fix: fix value access

This commit is contained in:
Alex Grozav 2023-07-18 15:17:42 +03:00
parent 842cdc5b80
commit 472ab7c988

View file

@ -608,7 +608,7 @@ export default defineComponent({
} }
// if the value is marked as empty return empty string, to prevent displaying the asterisks // if the value is marked as empty return empty string, to prevent displaying the asterisks
if (this.value === CREDENTIAL_EMPTY_VALUE) { if (this.modelValue === CREDENTIAL_EMPTY_VALUE) {
return ''; return '';
} }