From 23d6f9977d54469a6120e7e77e9482d393819b5c Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 16 Jun 2020 00:02:57 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 3 ++- ayanova/src/views/ay-evaluate.vue | 19 ++++++++++++++----- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 886c3283..f7fc512e 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -59,7 +59,8 @@ If AyaNova looks like it might work for your organization: =============== - +todo: if dbid in url query parameter of contact form on server it should include that in the message + also something needs to be fixed there, it's been in notes forever todo: red notification automatic when maintenance has expired diff --git a/ayanova/src/views/ay-evaluate.vue b/ayanova/src/views/ay-evaluate.vue index 01d5f2dd..7d3986f5 100644 --- a/ayanova/src/views/ay-evaluate.vue +++ b/ayanova/src/views/ay-evaluate.vue @@ -11,12 +11,14 @@ {{ $ay.t("EvaluationGuide") }} + {{ + $ay.t("HelpTechSupport") + }} -
{{ $ay.t("GenerateSampleData") }}
- - Evaluation guide in manual Generate sample data Purchase licenses - Contact support +
{{ $ay.t("GenerateSampleData") }}
+ picklist of sizes + trigger button
@@ -79,6 +81,12 @@ export default { key: "app:help", data: "ay-evaluate" }); + }, + supportLink() { + return ( + "https://contact.ayanova.com/contact?dbid=" + + window.$gz.store.state.globalSettings.dbId + ); } } }; @@ -142,7 +150,8 @@ function fetchTranslatedText(vm) { return window.$gz.translation.cacheTranslations([ "Welcome", "GenerateSampleData", - "EvaluationGuide" + "EvaluationGuide", + "HelpTechSupport" ]); }