From 8d0e2a8fdc266458a0632570eea177eec08eba79 Mon Sep 17 00:00:00 2001 From: Nicola Krumschmidt Date: Fri, 1 Apr 2022 19:30:10 +0200 Subject: [PATCH] Fix v-form overwriting type of input-hash interface (#12464) This was causing the password field on the user details page to show the password in clear text when inputting a new one. --- app/src/interfaces/input-hash/input-hash.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/interfaces/input-hash/input-hash.vue b/app/src/interfaces/input-hash/input-hash.vue index c599df1636..8d53ed4a36 100644 --- a/app/src/interfaces/input-hash/input-hash.vue +++ b/app/src/interfaces/input-hash/input-hash.vue @@ -18,6 +18,7 @@ import { useI18n } from 'vue-i18n'; import { defineComponent, computed, ref, watch } from 'vue'; export default defineComponent({ + inheritAttrs: false, props: { value: { type: String,