Skip to content

Commit c918b8f

Browse files
Merge branch 'mealie-next' into fix/mealplan-date-off-by-one
2 parents 168e226 + f7f8c51 commit c918b8f

File tree

9 files changed

+17
-12
lines changed

9 files changed

+17
-12
lines changed

docs/docs/documentation/getting-started/installation/installation-checklist.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ To install Mealie on your server there are a few steps for proper configuration.
88

99
- [SQLite docker-compose](./sqlite.md)
1010
- [Postgres docker-compose](./postgres.md)
11-
- [Single container docker-compose](./single-container.md)
1211

1312
## Pre-work
1413

frontend/components/Domain/Recipe/RecipeExplorerPage.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
:items="categories"
2525
>
2626
<v-icon left>
27-
{{ $globals.icons.tags }}
27+
{{ $globals.icons.categories }}
2828
</v-icon>
2929
{{ $t("category.categories") }}
3030
</SearchFilter>
@@ -40,7 +40,7 @@
4040
<!-- Tool Filter -->
4141
<SearchFilter v-if="tools" v-model="selectedTools" :require-all.sync="state.requireAllTools" :items="tools">
4242
<v-icon left>
43-
{{ $globals.icons.tools }}
43+
{{ $globals.icons.potSteam }}
4444
</v-icon>
4545
{{ $t("tool.tools") }}
4646
</SearchFilter>

frontend/components/Domain/Recipe/RecipeOrganizerDialog.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
<v-card>
55
<v-app-bar dense dark color="primary mb-2">
66
<v-icon large left class="mt-1">
7-
{{ itemType === Organizer.Tool ? $globals.icons.potSteam : $globals.icons.tags }}
7+
{{ itemType === Organizer.Tool ? $globals.icons.potSteam :
8+
itemType === Organizer.Category ? $globals.icons.categories :
9+
$globals.icons.tags }}
810
</v-icon>
911

1012
<v-toolbar-title class="headline">

frontend/components/Domain/Recipe/RecipeOrganizerSelector.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
deletable-chips
99
item-text="name"
1010
multiple
11-
:prepend-inner-icon="selectorType === Organizer.Tool ? $globals.icons.potSteam : $globals.icons.tags"
11+
:prepend-inner-icon="selectorType === Organizer.Tool ? $globals.icons.potSteam :
12+
selectorType === Organizer.Category ? $globals.icons.categories :
13+
$globals.icons.tags"
1214
return-object
1315
v-bind="inputAttrs"
1416
>

frontend/components/Layout/DefaultLayout.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@
191191
restricted: true,
192192
},
193193
{
194-
icon: $globals.icons.tags,
194+
icon: $globals.icons.categories,
195195
to: "/recipes/categories",
196196
title: i18n.tc("sidebar.categories"),
197197
restricted: true,

frontend/lib/icons/icons.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ import {
1010
mdiClose,
1111
mdiTagArrowUpOutline,
1212
mdiTagMultipleOutline,
13+
mdiShapeOutline,
1314
mdiBookOutline,
1415
mdiAccountCog,
1516
mdiAccountGroup,
1617
mdiSlotMachine,
1718
mdiHome,
1819
mdiMagnify,
19-
mdiPotSteam,
20+
mdiPotSteamOutline,
2021
mdiTranslate,
2122
mdiClockTimeFourOutline,
2223
mdiImport,
@@ -262,7 +263,7 @@ export const icons = {
262263
timerPause: mdiTimerPause,
263264
timerPlus: mdiTimerPlus,
264265
tools: mdiTools,
265-
potSteam: mdiPotSteam,
266+
potSteam: mdiPotSteamOutline,
266267
translate: mdiTranslate,
267268
upload: mdiCloudUpload,
268269
viewDashboard: mdiViewDashboard,
@@ -290,6 +291,7 @@ export const icons = {
290291
// Organization
291292
tags: mdiTagMultipleOutline,
292293
tagArrowUp: mdiTagArrowUpOutline,
294+
categories: mdiShapeOutline,
293295
pages: mdiBookOutline,
294296

295297
// Admin

frontend/pages/group/data/recipes.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ export default defineComponent({
223223
event: "tag-selected",
224224
},
225225
{
226-
icon: $globals.icons.tags,
226+
icon: $globals.icons.categories,
227227
text: i18n.tc("data-pages.recipes.categorize"),
228228
event: "categorize-selected",
229229
},
@@ -379,7 +379,7 @@ export default defineComponent({
379379
380380
const icons: Record<MODES, string> = {
381381
[MODES.tag]: $globals.icons.tags,
382-
[MODES.category]: $globals.icons.tags,
382+
[MODES.category]: $globals.icons.categories,
383383
[MODES.export]: $globals.icons.database,
384384
[MODES.delete]: $globals.icons.delete,
385385
[MODES.updateSettings]: $globals.icons.cog,

frontend/pages/recipes/categories/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<RecipeOrganizerPage
44
v-if="items"
55
:items="items"
6-
:icon="$globals.icons.tags"
6+
:icon="$globals.icons.categories"
77
item-type="categories"
88
@delete="actions.deleteOne"
99
@update="actions.updateOne"

frontend/pages/user/profile/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ export default defineComponent({
341341
342342
const iconText: { [key: string]: string } = {
343343
totalUsers: $globals.icons.user,
344-
totalCategories: $globals.icons.tags,
344+
totalCategories: $globals.icons.categories,
345345
totalTags: $globals.icons.tags,
346346
totalTools: $globals.icons.potSteam,
347347
};

0 commit comments

Comments
 (0)