From 65daa69c302abd0bd07d9e758298c7ab0ff5dae5 Mon Sep 17 00:00:00 2001 From: Rijk van Zanten Date: Fri, 7 May 2021 13:19:54 -0400 Subject: [PATCH] Update input.vue --- app/src/interfaces/input/input.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/interfaces/input/input.vue b/app/src/interfaces/input/input.vue index 3939141806..1558de2192 100644 --- a/app/src/interfaces/input/input.vue +++ b/app/src/interfaces/input/input.vue @@ -129,7 +129,7 @@ export default defineComponent({ }); const inputType = computed(() => { - if (props.masked) return 'password'; + if (props.masked) return 'new-password'; if (['bigInteger', 'integer', 'float', 'decimal'].includes(props.type)) return 'number'; return 'text'; });