mirror of
https://iceshrimp.dev/limepotato/jormungandr-patches.git
synced 2024-11-09 04:41:23 -07:00
33 lines
1.4 KiB
Diff
33 lines
1.4 KiB
Diff
From 02daa6b02a73177b62490ed2559047fa7ff3f0b0 Mon Sep 17 00:00:00 2001
|
|
From: limepotato <bm01@limepot.xyz>
|
|
Date: Tue, 18 Jun 2024 00:38:13 -0600
|
|
Subject: [PATCH] Fix find another server link
|
|
|
|
---
|
|
TODO.md | 2 +-
|
|
packages/client/src/components/MkSignup.vue | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/TODO.md b/TODO.md
|
|
index d56ac49d5..41cc9102a 100644
|
|
--- a/TODO.md
|
|
+++ b/TODO.md
|
|
@@ -19,4 +19,4 @@
|
|
- [ ] settings/general "Show a warning if you attempt to post files without a description" from FireFish
|
|
- [ ] settings/general "Get assets from CDN" from FireFish
|
|
- [ ] Robot-Mode, much like cat-mode but, Robot antenna, and beeps and boops
|
|
-- [ ] When not signed-in, approvals off, try to signup, "Find another server" leads to dead link
|
|
+- [X] When not signed-in, approvals off, try to signup, "Find another server" leads to dead link
|
|
diff --git a/packages/client/src/components/MkSignup.vue b/packages/client/src/components/MkSignup.vue
|
|
index ebe502aa2..4fd971a73 100644
|
|
--- a/packages/client/src/components/MkSignup.vue
|
|
+++ b/packages/client/src/components/MkSignup.vue
|
|
@@ -1,7 +1,7 @@
|
|
<template>
|
|
<div v-if="instance.disableRegistration" style="margin-bottom: 1rem">
|
|
<p>{{ i18n.ts.signupsDisabled }}</p>
|
|
- <a href="https://iceshrimp.dev/join">
|
|
+ <a href="https://fedidb.org/software/iceshrimp">
|
|
<MkButton rounded gradate
|
|
>{{ i18n.ts.findOtherInstance }}
|
|
</MkButton>
|