From fce400f32353c9a18c88f15a87d7b2d7a99f0db6 Mon Sep 17 00:00:00 2001 From: Kalista Payne Date: Thu, 18 Dec 2025 10:32:08 -0600 Subject: [PATCH] Squashed commit of the following: commit 6d4accc43d20bb89b0496cec81e3b7d2a80c51b2 Author: Kalista Payne Date: Tue Dec 16 17:00:37 2025 -0600 fix(front): add some spacing to account for removed pieces commit 800d8c20c9705b39438866dca360d2d2bbbbf8de Author: Kalista Payne Date: Tue Dec 16 16:21:50 2025 -0600 fix(lint): missing variable declaration commit c16ff32d49fc11cf1fc737c242522485ecf3ef5d Author: Kalista Payne Date: Mon Dec 15 17:21:00 2025 -0600 fix(vue): markdownContainer TypeError commit 5b4cf689b80c92e7163bcfd12b2c09f582d895f6 Author: Kalista Payne Date: Tue Dec 16 15:07:43 2025 -0600 fix(auth): debounce password reset request --- website/client/src/components/auth/registerLoginReset.vue | 4 ++-- website/client/src/components/messages/messageCard.vue | 3 +++ website/client/src/components/static/home.vue | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/website/client/src/components/auth/registerLoginReset.vue b/website/client/src/components/auth/registerLoginReset.vue index feb2ad19f4..ca6068388e 100644 --- a/website/client/src/components/auth/registerLoginReset.vue +++ b/website/client/src/components/auth/registerLoginReset.vue @@ -672,7 +672,7 @@ export default { this.login(); }, - async forgotPasswordLink () { + forgotPasswordLink: debounce(async function forgotPassLink () { if (!this.username) { window.alert(this.$t('missingEmail')); // eslint-disable-line no-alert return; @@ -683,7 +683,7 @@ export default { }); window.alert(this.$t('newPassSent')); // eslint-disable-line no-alert - }, + }, 500), async resetPasswordSetNewOneLink () { if (!this.password) { window.alert(this.$t('missingNewPassword')); // eslint-disable-line no-alert diff --git a/website/client/src/components/messages/messageCard.vue b/website/client/src/components/messages/messageCard.vue index ebe1916d3f..3982be6d07 100644 --- a/website/client/src/components/messages/messageCard.vue +++ b/website/client/src/components/messages/messageCard.vue @@ -491,6 +491,9 @@ export default { }, methods: { mapProfileLinksToModal () { + if (!this.$refs?.markdownContainer) { + return; + } const links = this.$refs.markdownContainer.getElementsByTagName('a'); for (let i = 0; i < links.length; i += 1) { let link = links[i].pathname; diff --git a/website/client/src/components/static/home.vue b/website/client/src/components/static/home.vue index 9eede2f960..0af1a9b2d1 100644 --- a/website/client/src/components/static/home.vue +++ b/website/client/src/components/static/home.vue @@ -11,12 +11,12 @@ -
+
-
+