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'; });