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") }} +