From 40f67902e816221a3790dcd73a2695bd48f2998a Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Tue, 25 Feb 2025 16:07:15 +0000 Subject: [PATCH] Bug 39320: Add FA icons to ERM Would be great to improve the way we load icons to be available everywhere in Vue instead of just the specific module but on a different scope. Sponsored-by: UKHSA (UK Health Security Agency) Signed-off-by: Jeremy Evans --- .../intranet-tmpl/prog/js/vue/modules/erm.ts | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/modules/erm.ts b/koha-tmpl/intranet-tmpl/prog/js/vue/modules/erm.ts index 05e63d05c6e..bf22b7a0abc 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/modules/erm.ts +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/modules/erm.ts @@ -10,11 +10,28 @@ import { faPencil, faTrash, faSpinner, + faCog, + faEye, + faEllipsisVertical, + faArrowRight, + faArrowLeft, } from "@fortawesome/free-solid-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome"; import vSelect from "vue-select"; -library.add(faList, faPlus, faMinus, faPencil, faTrash, faSpinner); +library.add( + faList, + faPlus, + faMinus, + faPencil, + faTrash, + faSpinner, + faCog, + faEye, + faEllipsisVertical, + faArrowRight, + faArrowLeft +); import App from "../components/ERM/Main.vue"; -- 2.39.5