diff --git a/ayanova/src/plugins/vuetify.js b/ayanova/src/plugins/vuetify.js index 5473cd97..980b1348 100644 --- a/ayanova/src/plugins/vuetify.js +++ b/ayanova/src/plugins/vuetify.js @@ -49,6 +49,7 @@ import { faDraftingCompass, faEdit, faEllipsisV, + faEnvelopeOpenText, faExclamationCircle, faExclamationTriangle, faEye, @@ -178,6 +179,7 @@ library.add( faDraftingCompass, faEdit, faEllipsisV, + faEnvelopeOpenText, faExclamationCircle, faExclamationTriangle, faEye, @@ -468,6 +470,12 @@ const CUSTOM_ICONS = { icon: ["fas", "edit"] } }, + ayiEnvelopeOpenText: { + component: FontAwesomeIcon, + props: { + icon: ["fas", "envelope-open-text"] + } + }, ayiExclamationCircle: { component: FontAwesomeIcon, props: { diff --git a/ayanova/src/views/ay-history.vue b/ayanova/src/views/ay-history.vue index 50036f08..109df6e6 100644 --- a/ayanova/src/views/ay-history.vue +++ b/ayanova/src/views/ay-history.vue @@ -412,7 +412,7 @@ function populateEventTypeList(vm) { 1: { name: vm.$ay.t("EventCreated"), icon: "$ayiPlus" }, 2: { name: vm.$ay.t("EventRetrieved"), - icon: "fa-envelope-open-text" + icon: "$ayiEnvelopeOpenText" }, 3: { name: vm.$ay.t("EventModified"), icon: "$ayiSave" }, 4: {