diff --git a/frontend/components/Domain/Recipe/RecipeExplorerPage.vue b/frontend/components/Domain/Recipe/RecipeExplorerPage.vue index a169c9fe7..ae4eaf9b1 100644 --- a/frontend/components/Domain/Recipe/RecipeExplorerPage.vue +++ b/frontend/components/Domain/Recipe/RecipeExplorerPage.vue @@ -24,7 +24,7 @@ :items="categories" > - {{ $globals.icons.tags }} + {{ $globals.icons.categories }} {{ $t("category.categories") }} @@ -40,7 +40,7 @@ - {{ $globals.icons.tools }} + {{ $globals.icons.potSteam }} {{ $t("tool.tools") }} diff --git a/frontend/components/Domain/Recipe/RecipeOrganizerDialog.vue b/frontend/components/Domain/Recipe/RecipeOrganizerDialog.vue index e1c8a84a2..e4c90090b 100644 --- a/frontend/components/Domain/Recipe/RecipeOrganizerDialog.vue +++ b/frontend/components/Domain/Recipe/RecipeOrganizerDialog.vue @@ -4,7 +4,9 @@ - {{ itemType === Organizer.Tool ? $globals.icons.potSteam : $globals.icons.tags }} + {{ itemType === Organizer.Tool ? $globals.icons.potSteam : + itemType === Organizer.Category ? $globals.icons.categories : + $globals.icons.tags }} diff --git a/frontend/components/Domain/Recipe/RecipeOrganizerSelector.vue b/frontend/components/Domain/Recipe/RecipeOrganizerSelector.vue index 8999a8fd6..78d521c00 100644 --- a/frontend/components/Domain/Recipe/RecipeOrganizerSelector.vue +++ b/frontend/components/Domain/Recipe/RecipeOrganizerSelector.vue @@ -8,7 +8,9 @@ deletable-chips item-text="name" multiple - :prepend-inner-icon="selectorType === Organizer.Tool ? $globals.icons.potSteam : $globals.icons.tags" + :prepend-inner-icon="selectorType === Organizer.Tool ? $globals.icons.potSteam : + selectorType === Organizer.Category ? $globals.icons.categories : + $globals.icons.tags" return-object v-bind="inputAttrs" > diff --git a/frontend/components/Layout/DefaultLayout.vue b/frontend/components/Layout/DefaultLayout.vue index e585d6c67..3af77dea3 100644 --- a/frontend/components/Layout/DefaultLayout.vue +++ b/frontend/components/Layout/DefaultLayout.vue @@ -191,7 +191,7 @@ restricted: true, }, { - icon: $globals.icons.tags, + icon: $globals.icons.categories, to: "/recipes/categories", title: i18n.tc("sidebar.categories"), restricted: true, diff --git a/frontend/lib/icons/icons.ts b/frontend/lib/icons/icons.ts index ab198282c..ffe43385f 100644 --- a/frontend/lib/icons/icons.ts +++ b/frontend/lib/icons/icons.ts @@ -10,13 +10,14 @@ import { mdiClose, mdiTagArrowUpOutline, mdiTagMultipleOutline, + mdiShapeOutline, mdiBookOutline, mdiAccountCog, mdiAccountGroup, mdiSlotMachine, mdiHome, mdiMagnify, - mdiPotSteam, + mdiPotSteamOutline, mdiTranslate, mdiClockTimeFourOutline, mdiImport, @@ -262,7 +263,7 @@ export const icons = { timerPause: mdiTimerPause, timerPlus: mdiTimerPlus, tools: mdiTools, - potSteam: mdiPotSteam, + potSteam: mdiPotSteamOutline, translate: mdiTranslate, upload: mdiCloudUpload, viewDashboard: mdiViewDashboard, @@ -290,6 +291,7 @@ export const icons = { // Organization tags: mdiTagMultipleOutline, tagArrowUp: mdiTagArrowUpOutline, + categories: mdiShapeOutline, pages: mdiBookOutline, // Admin diff --git a/frontend/pages/group/data/recipes.vue b/frontend/pages/group/data/recipes.vue index 26769ac87..a5482c885 100644 --- a/frontend/pages/group/data/recipes.vue +++ b/frontend/pages/group/data/recipes.vue @@ -223,7 +223,7 @@ export default defineComponent({ event: "tag-selected", }, { - icon: $globals.icons.tags, + icon: $globals.icons.categories, text: i18n.tc("data-pages.recipes.categorize"), event: "categorize-selected", }, @@ -379,7 +379,7 @@ export default defineComponent({ const icons: Record = { [MODES.tag]: $globals.icons.tags, - [MODES.category]: $globals.icons.tags, + [MODES.category]: $globals.icons.categories, [MODES.export]: $globals.icons.database, [MODES.delete]: $globals.icons.delete, [MODES.updateSettings]: $globals.icons.cog, diff --git a/frontend/pages/recipes/categories/index.vue b/frontend/pages/recipes/categories/index.vue index 63f012bbc..ac4779d6e 100644 --- a/frontend/pages/recipes/categories/index.vue +++ b/frontend/pages/recipes/categories/index.vue @@ -3,7 +3,7 @@