Skip to content
Snippets Groups Projects
Commit 5eeb202d authored by Julian's avatar Julian
Browse files

Add iconActive to menu items in matrix

parent 2f510053
No related branches found
No related tags found
1 merge request!145Resolve "Set icons for active menu entries"
Pipeline #172035 failed
......@@ -9,6 +9,11 @@ and this project adheres to `Semantic Versioning`_.
Unreleased
----------
Added
~~~~~
* Menu icon changes when entry is selected.
`3.0`_ - 2023-05-14
-------------------
......
......@@ -3,6 +3,7 @@ export default {
inMenu: true,
titleKey: "hjelp.menu_title",
icon: "mdi-help-circle-outline",
iconActive: "mdi-help-circle",
},
props: {
byTheGreatnessOfTheAlmightyAleksolotlISwearIAmWorthyOfUsingTheLegacyBaseTemplate: true,
......@@ -16,6 +17,7 @@ export default {
inMenu: true,
titleKey: "hjelp.issues.menu_title",
icon: "mdi-bug-outline",
iconActive: "mdi-bug",
permission: "hjelp.report_issue_rule",
},
props: {
......@@ -30,6 +32,7 @@ export default {
inMenu: true,
titleKey: "hjelp.feedback.menu_title",
icon: "mdi-message-text-outline",
iconActive: "mdi-message-text",
permission: "hjelp.send_feedback_rule",
},
props: {
......@@ -44,6 +47,7 @@ export default {
inMenu: true,
titleKey: "hjelp.faq.menu_title_list",
icon: "mdi-forum-outline",
icon: "mdi-forum",
permission: "hjelp.view_faq_rule",
},
props: {
......@@ -66,6 +70,7 @@ export default {
inMenu: true,
titleKey: "hjelp.faq.menu_title_manage",
icon: "mdi-priority-low",
iconActive: "mdi-priority-high",
permission: "hjelp.change_faq_rule",
},
props: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment