Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CoreAdminHome/vue/src/SmtpSettings/SmtpSettings.vue')
-rw-r--r--plugins/CoreAdminHome/vue/src/SmtpSettings/SmtpSettings.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/CoreAdminHome/vue/src/SmtpSettings/SmtpSettings.vue b/plugins/CoreAdminHome/vue/src/SmtpSettings/SmtpSettings.vue
index 64214e0764..6d6e859ccc 100644
--- a/plugins/CoreAdminHome/vue/src/SmtpSettings/SmtpSettings.vue
+++ b/plugins/CoreAdminHome/vue/src/SmtpSettings/SmtpSettings.vue
@@ -51,7 +51,7 @@
v-model="mailUsername"
:title="translate('General_SmtpUsername')"
:inline-help="translate('General_OnlyEnterIfRequired')"
- :autocomplete="false"
+ :autocomplete="'off'"
/>
<Field
@@ -62,7 +62,7 @@
@click="!passwordChanged && $event.target.select();"
:title="translate('General_SmtpPassword')"
:inline-help="passwordHelp"
- :autocomplete="false"
+ :autocomplete="'off'"
/>
<Field
@@ -71,7 +71,7 @@
v-model="mailFromAddress"
:title="translate('General_SmtpFromAddress')"
:inline-help="translate('General_SmtpFromEmailHelp', mailHost)"
- :autocomplete="false"
+ :autocomplete="'off'"
/>
<Field
@@ -80,7 +80,7 @@
v-model="mailFromName"
:title="translate('General_SmtpFromName')"
:inline-help="translate('General_NameShownInTheSenderColumn')"
- :autocomplete="false"
+ :autocomplete="'off'"
/>
<Field