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

View File

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