From 3a7a88857a8fe606f68ba33e6c66c81b8cdcb81c Mon Sep 17 00:00:00 2001 From: Vlad Stan Date: Wed, 2 Apr 2025 14:51:15 +0300 Subject: [PATCH] fix: missing label (#3081) --- lnbits/core/templates/core/first_install.html | 2 +- lnbits/core/templates/core/index.html | 7 ++++--- lnbits/static/bundle.min.js | 2 +- lnbits/static/i18n/en.js | 2 ++ 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/lnbits/core/templates/core/first_install.html b/lnbits/core/templates/core/first_install.html index a98cb44c..99a0b624 100644 --- a/lnbits/core/templates/core/first_install.html +++ b/lnbits/core/templates/core/first_install.html @@ -38,7 +38,7 @@ :type="loginData.isPwdRepeat ? 'password' : 'text'" autocomplete="off" :label="$t('password_repeat')" - :rules="[(val) => !val || val.length >= 8 || $t('invalid_password'), (val) => val === loginData.password || 'Passwords_dont_match']" + :rules="[(val) => !val || val.length >= 8 || $t('invalid_password'), (val) => val === loginData.password || $t('invalid_password_repeat')]" >