diff --git a/src/components/HiddenInput.vue b/src/components/HiddenInput.vue index 0dfb4b5e..7ec9f2e4 100644 --- a/src/components/HiddenInput.vue +++ b/src/components/HiddenInput.vue @@ -13,8 +13,8 @@ :maxlength="maxlength" :autocomplete="autocomplete" :required="required" - readonly - onfocus="this.removeAttribute('readonly');" + :readonly="isReadOnly" + @focus="removeReadOnly" > @@ -47,10 +47,15 @@ export default { required: { type: Boolean }, + readonly: { + type: Boolean, + default: false, + }, }, data() { return { - visibility: "password" + visibility: "password", + readOnlyValue: false, } }, computed: { @@ -61,6 +66,21 @@ export default { set(value) { this.$emit("update:modelValue", value) } + }, + isReadOnly() { + // Actually readonly from prop + if (this.readonly) { + return true; + } + + // Hack - Disable Chrome save password + return this.readOnlyValue; + } + }, + created() { + // Hack - Disable Chrome save password + if (this.autocomplete) { + this.readOnlyValue = "readonly"; } }, methods: { @@ -69,6 +89,13 @@ export default { }, hideInput() { this.visibility = "password"; + }, + + // Hack - Disable Chrome save password + removeReadOnly() { + if (this.autocomplete) { + this.readOnlyValue = false; + } } } } diff --git a/src/components/NotificationDialog.vue b/src/components/NotificationDialog.vue index 8a79dba5..080fb859 100644 --- a/src/components/NotificationDialog.vue +++ b/src/components/NotificationDialog.vue @@ -40,7 +40,7 @@