Squashed commit of the following:
commit 6d4accc43d20bb89b0496cec81e3b7d2a80c51b2 Author: Kalista Payne <kalista@habitica.com> Date: Tue Dec 16 17:00:37 2025 -0600 fix(front): add some spacing to account for removed pieces commit 800d8c20c9705b39438866dca360d2d2bbbbf8de Author: Kalista Payne <kalista@habitica.com> Date: Tue Dec 16 16:21:50 2025 -0600 fix(lint): missing variable declaration commit c16ff32d49fc11cf1fc737c242522485ecf3ef5d Author: Kalista Payne <kalista@habitica.com> Date: Mon Dec 15 17:21:00 2025 -0600 fix(vue): markdownContainer TypeError commit 5b4cf689b80c92e7163bcfd12b2c09f582d895f6 Author: Kalista Payne <kalista@habitica.com> Date: Tue Dec 16 15:07:43 2025 -0600 fix(auth): debounce password reset request
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -11,12 +11,12 @@
|
||||
<privacy-banner
|
||||
class="privacy-banner"
|
||||
/>
|
||||
<div class="bg-purple-300 white">
|
||||
<div class="bg-purple-300 white pt-5">
|
||||
<div>
|
||||
<div
|
||||
id="intro-signup"
|
||||
>
|
||||
<div class="d-flex justify-content-center">
|
||||
<div class="d-flex justify-content-center pb-5 mb-5">
|
||||
<div class="w-33 mr-5 mt-5">
|
||||
<img
|
||||
src="@/assets/images/home/home-main@3x.png"
|
||||
|
||||
Reference in New Issue
Block a user