From d3033ada5b7f968b271f661e73ab251f1cf3c09b Mon Sep 17 00:00:00 2001
From: Katrin Fischer <katrin.fischer@bsz-bw.de>
Date: Wed, 25 Oct 2023 11:38:27 +0000
Subject: [PATCH] [23.05 without DNP-Patch] Bug 33169: (QA follow-up) Fix some
 icons for lower FA version

In the navigation some icons were missing, because they had changed
names between versions, this restores them. Fixed icons concerned
the navigation items:

* Local
* Local > Titles
* EBSCO > Titles
---
 koha-tmpl/intranet-tmpl/prog/js/vue/routes/erm.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/routes/erm.js b/koha-tmpl/intranet-tmpl/prog/js/vue/routes/erm.js
index dbd78f57f66..e0bc15107bc 100644
--- a/koha-tmpl/intranet-tmpl/prog/js/vue/routes/erm.js
+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/routes/erm.js
@@ -116,7 +116,7 @@ export const routes = [
                     {
                         path: "local",
                         title: $__("Local"),
-                        icon: "fa-solid fa-location-dot",
+                        icon: "fa fa-map-marker",
                         disabled: true,
                         children: [
                             {
@@ -161,7 +161,7 @@ export const routes = [
                             {
                                 path: "titles",
                                 title: $__("Titles"),
-                                icon: "fa-solid fa-arrow-down-a-z",
+                                icon: "fa fa-sort-alpha-asc",
                                 is_end_node: true,
                                 children: [
                                     {
@@ -247,7 +247,7 @@ export const routes = [
                             {
                                 path: "titles",
                                 title: $__("Titles"),
-                                icon: "fa-solid fa-arrow-down-a-z",
+                                icon: "fa fa-sort-alpha-asc",
                                 is_end_node: true,
                                 children: [
                                     {
-- 
2.30.2