diff --git a/ayanova/src/api/gzutil.js b/ayanova/src/api/gzutil.js index 150c9deb..4d10db31 100644 --- a/ayanova/src/api/gzutil.js +++ b/ayanova/src/api/gzutil.js @@ -458,7 +458,7 @@ export default { case window.$gz.type.UnitMeterReading: return "$ayiWeight"; case window.$gz.type.CustomerServiceRequest: - return "$ayiChild"; + return "$ayiConciergeBell"; case window.$gz.type.ServiceBank: return "$ayiCarBattery"; case window.$gz.type.OpsNotificationSettings: diff --git a/ayanova/src/api/initialize.js b/ayanova/src/api/initialize.js index 85212ac3..f70ddff9 100644 --- a/ayanova/src/api/initialize.js +++ b/ayanova/src/api/initialize.js @@ -64,7 +64,7 @@ function initNavPanel() { //CSR LIST subitem sub.push({ title: "CustomerServiceRequestList", - icon: "$ayiChild", + icon: "$ayiConciergeBell", route: "/customer-csr-list", key: key++ }); @@ -463,7 +463,7 @@ function initNavPanel() { ) { sub.push({ title: "CustomerServiceRequestList", - icon: "$ayiChild", + icon: "$ayiConciergeBell", route: "/svc-csr-list", key: key++ }); diff --git a/ayanova/src/plugins/vuetify.js b/ayanova/src/plugins/vuetify.js index 2b1e7ce3..92e2e625 100644 --- a/ayanova/src/plugins/vuetify.js +++ b/ayanova/src/plugins/vuetify.js @@ -45,7 +45,6 @@ import { faChevronDown, faChevronLeft, faChevronRight, - faChild, faClipboard, faClock, faClone, @@ -53,6 +52,7 @@ import { faCogs, faColumns, faCommentAlt, + faConciergeBell, faCopy, faDiceD20, faDolly, @@ -204,7 +204,6 @@ library.add( faChevronDown, faChevronLeft, faChevronRight, - faChild, faClipboard, farCircle, faClock, @@ -213,6 +212,7 @@ library.add( faCogs, faColumns, faCommentAlt, + faConciergeBell, faCopy, faDiceD20, faDolly, @@ -454,12 +454,7 @@ const CUSTOM_ICONS = { icon: ["fas", "check-square"] } }, - ayiChild: { - component: FontAwesomeIcon, - props: { - icon: ["fas", "child"] - } - }, + ayiClipboard: { component: FontAwesomeIcon, props: { @@ -502,6 +497,12 @@ const CUSTOM_ICONS = { icon: ["fas", "comment-alt"] } }, + ayiConciergeBell: { + component: FontAwesomeIcon, + props: { + icon: ["fas", "concierge-bell"] + } + }, ayiCopy: { component: FontAwesomeIcon, props: { diff --git a/ayanova/src/views/customer-csr-list.vue b/ayanova/src/views/customer-csr-list.vue index 88197d4d..b0c892d9 100644 --- a/ayanova/src/views/customer-csr-list.vue +++ b/ayanova/src/views/customer-csr-list.vue @@ -12,7 +12,7 @@ export default { beforeCreate() { window.$gz.eventBus.$emit("menu-change", { isMain: true, - icon: "$ayiChild", + icon: "$ayiConciergeBell", title: "CustomerServiceRequestList", helpUrl: "form-customer-csr-list" }); diff --git a/ayanova/src/views/svc-csr-list.vue b/ayanova/src/views/svc-csr-list.vue index c124e825..18dcb611 100644 --- a/ayanova/src/views/svc-csr-list.vue +++ b/ayanova/src/views/svc-csr-list.vue @@ -12,7 +12,7 @@ export default { beforeCreate() { window.$gz.eventBus.$emit("menu-change", { isMain: true, - icon: "$ayiChild", + icon: "$ayiConciergeBell", title: "CustomerServiceRequestList", helpUrl: "form-svc-csr-list" });