diff --git a/ayanova/src/views/adm-user.vue b/ayanova/src/views/adm-user.vue index b8a9b7d5..bd8d8c53 100644 --- a/ayanova/src/views/adm-user.vue +++ b/ayanova/src/views/adm-user.vue @@ -310,19 +310,6 @@ > - - - - + + + + @@ -361,6 +366,8 @@ " ref="timeZoneOverride" @input="fieldValueChanged('timeZoneOverride')" + append-outer-icon="$ayiQuestionCircle" + @click:append-outer="goHelp()" > @@ -562,6 +569,12 @@ export default { }, methods: { + goHelp() { + window.open( + this.$store.state.helpUrl + "ay-start-localization", + "_blank" + ); + }, canSave: function() { return this.formState.valid && this.formState.dirty; }, diff --git a/ayanova/src/views/cust-user.vue b/ayanova/src/views/cust-user.vue index f9371973..68a189d9 100644 --- a/ayanova/src/views/cust-user.vue +++ b/ayanova/src/views/cust-user.vue @@ -300,19 +300,6 @@ > - - - - + + + + @@ -351,6 +356,8 @@ " ref="timeZoneOverride" @input="fieldValueChanged('timeZoneOverride')" + append-outer-icon="$ayiQuestionCircle" + @click:append-outer="goHelp()" > @@ -572,6 +579,12 @@ export default { }, methods: { + goHelp() { + window.open( + this.$store.state.helpUrl + "ay-start-localization", + "_blank" + ); + }, canSave: function() { return this.formState.valid && this.formState.dirty; }, diff --git a/ayanova/src/views/home-user-settings.vue b/ayanova/src/views/home-user-settings.vue index e3104f16..ef58196e 100644 --- a/ayanova/src/views/home-user-settings.vue +++ b/ayanova/src/views/home-user-settings.vue @@ -100,20 +100,6 @@ @input="mapUrlSelectionChanged" > - - - - - + + + + @@ -148,6 +152,8 @@ @input="fieldValueChanged('timeZoneOverride')" :hint="locale().getResolvedTimeZoneName()" persistent-hint + append-outer-icon="$ayiQuestionCircle" + @click:append-outer="goHelp()" > @@ -290,6 +296,12 @@ export default { } }, methods: { + goHelp() { + window.open( + this.$store.state.helpUrl + "ay-start-localization", + "_blank" + ); + }, translation() { return window.$gz.translation; },