This commit is contained in:
2020-10-06 14:58:03 +00:00
parent d7b9b94804
commit 800a27b70a
36 changed files with 173 additions and 93 deletions

View File

@@ -687,7 +687,7 @@ function generateMenu(vm) {
if (vm.rights.change) {
menuOptions.menuItems.push({
title: "Save",
icon: "fa-save",
icon: "$ayiSave",
surface: true,
key: FORM_KEY + ":save",
vm: vm
@@ -697,7 +697,7 @@ function generateMenu(vm) {
if (vm.rights.delete && vm.$route.params.recordid != 0) {
menuOptions.menuItems.push({
title: "Delete",
icon: "fa-trash-alt",
icon: "$ayiTrashAlt",
surface: false,
key: FORM_KEY + ":delete",
vm: vm
@@ -727,7 +727,7 @@ function generateMenu(vm) {
if (vm.rights.change) {
menuOptions.menuItems.push({
title: "New",
icon: "fa-plus",
icon: "$ayiPlus",
key: FORM_KEY + ":new",
vm: vm
});
@@ -736,7 +736,7 @@ function generateMenu(vm) {
if (vm.rights.change) {
menuOptions.menuItems.push({
title: "Duplicate",
icon: "fa-clone",
icon: "$ayiClone",
key: FORM_KEY + ":duplicate",
vm: vm
});