diff --git a/ayanova/src/api/initialize.js b/ayanova/src/api/initialize.js index 5b40aff5..8e1df240 100644 --- a/ayanova/src/api/initialize.js +++ b/ayanova/src/api/initialize.js @@ -278,7 +278,7 @@ function initNavPanel() { //Customer / Headoffice Users subitem sub.push({ title: "UserList", - icon: "fa-users", + icon: "$ayiUsers", route: "/cust-users", key: key++ }); @@ -286,7 +286,7 @@ function initNavPanel() { // ** CUSTOMER (TOP) addNavItem( "CustomerList", - "fa-address-book", + "$ayiAddressBook", undefined, sub, key++, @@ -322,7 +322,7 @@ function initNavPanel() { ) { sub.push({ title: "Schedule", - icon: "fa-calendar-alt", + icon: "$ayiCalendarAlt", route: "/svc-schedule", key: key++ }); @@ -362,7 +362,7 @@ function initNavPanel() { //so there is no separate role check here as the service group role check supersedes this sub.push({ title: "QuoteList", - icon: "fa-pencil-alt", + icon: "$ayiPencilAlt", route: "/svc-quotes", key: key++ }); @@ -380,7 +380,7 @@ function initNavPanel() { ) { sub.push({ title: "PMList", - icon: "fa-business-time", + icon: "$ayiBusinessTime", route: "/svc-pm-list", key: key++ }); @@ -399,7 +399,7 @@ function initNavPanel() { ) { sub.push({ title: "UnitList", - icon: "fa-fan", + icon: "$ayiFan", route: "/svc-units", key: key++ }); @@ -407,7 +407,7 @@ function initNavPanel() { //UNIT MODELS subitem sub.push({ title: "UnitModels", - icon: "fa-dice-d20", + icon: "$ayiDiceD20", route: "/svc-unit-models", key: key++ }); @@ -425,7 +425,7 @@ function initNavPanel() { ) { sub.push({ title: "LoanUnitList", - icon: "fa-plug", + icon: "$ayiPlug", route: "/svc-loaners", key: key++ }); @@ -444,7 +444,7 @@ function initNavPanel() { ) { sub.push({ title: "ContractList", - icon: "fa-file-contract", + icon: "$ayiFileContract", route: "/svc-contracts", key: key++ }); @@ -470,7 +470,7 @@ function initNavPanel() { } //**** Service (TOP GROUP) - addNavItem("Service", "fa-toolbox", undefined, sub, key++, "service"); + addNavItem("Service", "$ayiToolbox", undefined, sub, key++, "service"); } //****************** INVENTORY @@ -611,7 +611,7 @@ function initNavPanel() { // USERS sub.push({ title: "UserList", - icon: "fa-users", + icon: "$ayiUsers", route: "/adm-users", key: key++ }); diff --git a/ayanova/src/components/date-non-native-control.vue b/ayanova/src/components/date-non-native-control.vue index 74ae7fbb..9145996f 100644 --- a/ayanova/src/components/date-non-native-control.vue +++ b/ayanova/src/components/date-non-native-control.vue @@ -6,7 +6,7 @@