This commit is contained in:
2020-12-14 21:41:42 +00:00
parent 2da73c775a
commit 40e13610b4
2 changed files with 18 additions and 2 deletions

View File

@@ -132,12 +132,14 @@ import {
faPuzzlePiece,
faQuestionCircle,
faQuoteLeft,
faReply,
faRobot,
faRocket,
faSave,
faSearch,
faSeedling,
faServer,
faShare,
faShippingFast,
faSignInAlt,
faSignOutAlt,
@@ -296,12 +298,14 @@ library.add(
faPuzzlePiece,
faQuestionCircle,
faQuoteLeft,
faReply,
faRobot,
faRocket,
faSave,
faSearch,
faSeedling,
faServer,
faShare,
faShippingFast,
faSignInAlt,
faSignOutAlt,
@@ -977,6 +981,12 @@ const CUSTOM_ICONS = {
icon: ["fas", "quote-left"]
}
},
ayiReply: {
component: FontAwesomeIcon,
props: {
icon: ["fas", "reply"]
}
},
ayiRobot: {
component: FontAwesomeIcon,
props: {
@@ -1013,6 +1023,12 @@ const CUSTOM_ICONS = {
icon: ["fas", "server"]
}
},
ayiShare: {
component: FontAwesomeIcon,
props: {
icon: ["fas", "share"]
}
},
ayiShippingFast: {
component: FontAwesomeIcon,
props: {

View File

@@ -560,7 +560,7 @@ function generateMenu(vm) {
if (vm.rights.change) {
menuOptions.menuItems.push({
title: "MemoForward",
icon: null,
icon: "$ayiShare",
key: FORM_KEY + ":forward",
vm: vm
});
@@ -569,7 +569,7 @@ function generateMenu(vm) {
if (vm.rights.change) {
menuOptions.menuItems.push({
title: "MemoReply",
icon: null,
icon: "$ayiReply",
key: FORM_KEY + ":reply",
vm: vm
});