2 Commits

Author SHA1 Message Date
Sebastian c6540afc7c chore(deps): update dependency vite to v8.2.1
Build Test / test (pull_request) Successful in 33s
JS Unit Tests / test (pull_request) Successful in 35s
PHP Unit Tests / test (pull_request) Successful in 1m29s
PHP Integration Tests / Integration Tests (pull_request) Failing after 1m58s
2026-08-08 03:01:46 +00:00
Sebastian 9fea6504c6 fix: stop browser from filling password fields
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-08-07 19:50:59 -04:00
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -1893,9 +1893,9 @@
"license": "MIT"
},
"node_modules/nanoid": {
"version": "3.3.17",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.17.tgz",
"integrity": "sha512-xQLf0A3HOMlgHq0n247/LRuAOYmB7dXJ/DvAxGvsSBij45XtBSmQycu+F8ODbHwns/XyFZagyL1+J0Offw1E0g==",
"version": "3.3.18",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.18.tgz",
"integrity": "sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w==",
"funding": [
{
"type": "github",
+3 -3
View File
@@ -133,7 +133,7 @@ const saveChanges = async () => {
label="Current Password"
placeholder="············"
variant="outlined"
autocomplete="off"
autocomplete="new-password"
@click:append-inner="isCurrentPasswordVisible = !isCurrentPasswordVisible"
/>
</VCol>
@@ -150,7 +150,7 @@ const saveChanges = async () => {
label="New Password"
placeholder="············"
variant="outlined"
autocomplete="suppress"
autocomplete="new-password"
@click:append-inner="isNewPasswordVisible = !isNewPasswordVisible"
/>
</VCol>
@@ -164,7 +164,7 @@ const saveChanges = async () => {
label="Confirm New Password"
placeholder="············"
variant="outlined"
autocomplete="suppress"
autocomplete="new-password"
:error="confirmPassword.length > 0 && confirmPassword !== newPassword"
:error-messages="confirmPassword.length > 0 && confirmPassword !== newPassword ? ['Passwords do not match'] : []"
@click:append-inner="isConfirmPasswordVisible = !isConfirmPasswordVisible"