This commit is contained in:
@@ -626,7 +626,7 @@ function generateMenu(vm) {
|
||||
let menuOptions = {
|
||||
isMain: false,
|
||||
icon: "fa-splotch",
|
||||
title: vm.$ay.t("User"),
|
||||
title: "User",
|
||||
helpUrl: "form-user",
|
||||
formData: {
|
||||
ayaType: window.$gz.type.User,
|
||||
@@ -638,7 +638,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",
|
||||
@@ -648,7 +648,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",
|
||||
@@ -659,7 +659,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
|
||||
@@ -678,7 +678,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
|
||||
@@ -687,7 +687,7 @@ function generateMenu(vm) {
|
||||
|
||||
if (vm.rights.change && vm.$route.params.recordid != 0) {
|
||||
menuOptions.menuItems.push({
|
||||
title: vm.$ay.t("Duplicate"),
|
||||
title: "Duplicate",
|
||||
icon: "fa-clone",
|
||||
key: FORM_KEY + ":duplicate",
|
||||
vm: vm
|
||||
|
||||
Reference in New Issue
Block a user