From f73d7bee4045fc0c61d776e53fcbbb16faf6e744 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 16 Jun 2020 23:42:19 +0000 Subject: [PATCH] --- ayanova/src/api/gzdialog.js | 6 ++++-- ayanova/src/components/gzconfirm.vue | 11 +++++++++++ ayanova/src/views/login.vue | 18 ++++++++++-------- 3 files changed, 25 insertions(+), 10 deletions(-) diff --git a/ayanova/src/api/gzdialog.js b/ayanova/src/api/gzdialog.js index 639a2cff..846535a1 100644 --- a/ayanova/src/api/gzdialog.js +++ b/ayanova/src/api/gzdialog.js @@ -119,13 +119,15 @@ export default { displayLTModalNotificationMessage( tKeyText, tKeyTitle = undefined, - ttype = "info" + ttype = "info", + tHelpUrl = undefined ) { return VM_LOCAL.$root.$gzconfirm({ message: tKeyText ? window.$gz.translation.get(tKeyText) : "", title: tKeyTitle ? window.$gz.translation.get(tKeyTitle) : "", yesButtonText: window.$gz.translation.get("OK"), - type: ttype + type: ttype, + helpUrl: tHelpUrl }); }, ///////////////////////////////////// diff --git a/ayanova/src/components/gzconfirm.vue b/ayanova/src/components/gzconfirm.vue index 053d28b9..32a98189 100644 --- a/ayanova/src/components/gzconfirm.vue +++ b/ayanova/src/components/gzconfirm.vue @@ -33,6 +33,14 @@ + + {{ this.$root.$gz.translation.get("More") }} +