This commit is contained in:
2020-06-16 23:42:19 +00:00
parent ae8f88ce32
commit f73d7bee40
3 changed files with 25 additions and 10 deletions

View File

@@ -33,6 +33,14 @@
<v-card-actions>
<v-spacer></v-spacer>
<v-btn
:data-cy="!!$ay.dev ? 'gzconfirm:morebutton' : false"
text
v-if="options.helpUrl"
@click="helpClick()"
>
{{ this.$root.$gz.translation.get("More") }}
</v-btn>
<v-btn
v-if="options.noButtonText"
color="primary darken-1"
@@ -98,6 +106,9 @@ export default {
cancel() {
this.resolve(false);
this.isVisible = false;
},
helpClick() {
window.open(this.options.helpUrl, "_blank");
}
}
};