This commit is contained in:
2020-06-24 22:28:15 +00:00
parent 6bb3ac290c
commit 9aa60dae7a
21 changed files with 61 additions and 61 deletions

View File

@@ -645,7 +645,7 @@ function generateMenu(vm) {
let menuOptions = {
isMain: false,
icon: "fa-splotch",
title: vm.$ay.t("Widget"),
title: "Widget",
helpUrl: "form-widget",
formData: {
ayaType: window.$gz.type.Widget,
@@ -657,7 +657,7 @@ function generateMenu(vm) {
if (vm.rights.change) {
menuOptions.menuItems.push({
title: vm.$ay.t("Save"),
title: "Save",
icon: "fa-save",
surface: true,
key: FORM_KEY + ":save",
@@ -667,7 +667,7 @@ function generateMenu(vm) {
if (vm.rights.delete && vm.$route.params.recordid != 0) {
menuOptions.menuItems.push({
title: vm.$ay.t("Delete"),
title: "Delete",
icon: "fa-trash-alt",
surface: true,
key: FORM_KEY + ":delete",
@@ -678,7 +678,7 @@ function generateMenu(vm) {
//STUB REPORTS
//Report not Print, print is a further option
menuOptions.menuItems.push({
title: vm.$ay.t("Report"),
title: "Report",
icon: "fa-file-alt",
key: FORM_KEY + ":report",
vm: vm
@@ -697,7 +697,7 @@ function generateMenu(vm) {
if (vm.rights.change) {
menuOptions.menuItems.push({
title: vm.$ay.t("New"),
title: "New",
icon: "fa-plus",
key: FORM_KEY + ":new",
vm: vm
@@ -706,7 +706,7 @@ function generateMenu(vm) {
if (vm.rights.change) {
menuOptions.menuItems.push({
title: vm.$ay.t("Duplicate"),
title: "Duplicate",
icon: "fa-clone",
key: FORM_KEY + ":duplicate",
vm: vm