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:
authorsgiehl <stefan@matomo.org>2022-11-07 17:42:37 +0300
committersgiehl <stefan@matomo.org>2022-11-07 17:42:37 +0300
commitadd4e163ad14376dbfcbaedf98d9685515ada94f (patch)
treef1349dc8ac07c9a3ca832ccceef5b7dc21947569 /plugins/CoreAdminHome/vue/src/SmtpSettings/SmtpSettings.vue
parent448ec4af2ff1e9ea3070afd355321bc152b4622a (diff)
parent3ddbb186ef564718ed0a4457e56d287c0c0f6708 (diff)
Merge branch '4.x-dev' into 5.x-dev
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