This commit is contained in:
2020-06-16 00:02:57 +00:00
parent 1da8b6063d
commit 23d6f9977d
2 changed files with 16 additions and 6 deletions

View File

@@ -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

View File

@@ -11,12 +11,14 @@
<v-btn @click="helpEvaluate()" class="my-8 mr-4">{{
$ay.t("EvaluationGuide")
}}</v-btn>
<v-btn :href="supportLink()" target="blank" class="my-8 mr-4">{{
$ay.t("HelpTechSupport")
}}</v-btn>
</v-col>
<v-col cols="12">
<div class="text-h5 mb-2">{{ $ay.t("GenerateSampleData") }}</div>
Evaluation guide in manual Generate sample data Purchase licenses
Contact support
<div class="text-h5 mt-8 mb-2">{{ $ay.t("GenerateSampleData") }}</div>
picklist of sizes
trigger button
</v-col>
</v-row>
</v-form>
@@ -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"
]);
}