File tree Expand file tree Collapse file tree 9 files changed +17
-12
lines changed
docs/docs/documentation/getting-started/installation Expand file tree Collapse file tree 9 files changed +17
-12
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ To install Mealie on your server there are a few steps for proper configuration.
8
8
9
9
- [SQLite docker-compose](./sqlite.md)
10
10
- [Postgres docker-compose](./postgres.md)
11
- - [Single container docker-compose](./single-container.md)
12
11
13
12
## Pre-work
14
13
Original file line number Diff line number Diff line change 24
24
:items =" categories"
25
25
>
26
26
<v-icon left >
27
- {{ $globals.icons.tags }}
27
+ {{ $globals.icons.categories }}
28
28
</v-icon >
29
29
{{ $t("category.categories") }}
30
30
</SearchFilter >
40
40
<!-- Tool Filter -->
41
41
<SearchFilter v-if =" tools" v-model =" selectedTools" :require-all.sync =" state.requireAllTools" :items =" tools" >
42
42
<v-icon left >
43
- {{ $globals.icons.tools }}
43
+ {{ $globals.icons.potSteam }}
44
44
</v-icon >
45
45
{{ $t("tool.tools") }}
46
46
</SearchFilter >
Original file line number Diff line number Diff line change 4
4
<v-card >
5
5
<v-app-bar dense dark color =" primary mb-2" >
6
6
<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 }}
8
10
</v-icon >
9
11
10
12
<v-toolbar-title class =" headline" >
Original file line number Diff line number Diff line change 8
8
deletable-chips
9
9
item-text =" name"
10
10
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"
12
14
return-object
13
15
v-bind =" inputAttrs"
14
16
>
Original file line number Diff line number Diff line change 191
191
restricted: true ,
192
192
},
193
193
{
194
- icon: $globals .icons .tags ,
194
+ icon: $globals .icons .categories ,
195
195
to: " /recipes/categories" ,
196
196
title: i18n .tc (" sidebar.categories" ),
197
197
restricted: true ,
Original file line number Diff line number Diff line change @@ -10,13 +10,14 @@ import {
10
10
mdiClose ,
11
11
mdiTagArrowUpOutline ,
12
12
mdiTagMultipleOutline ,
13
+ mdiShapeOutline ,
13
14
mdiBookOutline ,
14
15
mdiAccountCog ,
15
16
mdiAccountGroup ,
16
17
mdiSlotMachine ,
17
18
mdiHome ,
18
19
mdiMagnify ,
19
- mdiPotSteam ,
20
+ mdiPotSteamOutline ,
20
21
mdiTranslate ,
21
22
mdiClockTimeFourOutline ,
22
23
mdiImport ,
@@ -262,7 +263,7 @@ export const icons = {
262
263
timerPause : mdiTimerPause ,
263
264
timerPlus : mdiTimerPlus ,
264
265
tools : mdiTools ,
265
- potSteam : mdiPotSteam ,
266
+ potSteam : mdiPotSteamOutline ,
266
267
translate : mdiTranslate ,
267
268
upload : mdiCloudUpload ,
268
269
viewDashboard : mdiViewDashboard ,
@@ -290,6 +291,7 @@ export const icons = {
290
291
// Organization
291
292
tags : mdiTagMultipleOutline ,
292
293
tagArrowUp : mdiTagArrowUpOutline ,
294
+ categories : mdiShapeOutline ,
293
295
pages : mdiBookOutline ,
294
296
295
297
// Admin
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ export default defineComponent({
223
223
event: " tag-selected" ,
224
224
},
225
225
{
226
- icon: $globals .icons .tags ,
226
+ icon: $globals .icons .categories ,
227
227
text: i18n .tc (" data-pages.recipes.categorize" ),
228
228
event: " categorize-selected" ,
229
229
},
@@ -379,7 +379,7 @@ export default defineComponent({
379
379
380
380
const icons: Record <MODES , string > = {
381
381
[MODES .tag ]: $globals .icons .tags ,
382
- [MODES .category ]: $globals .icons .tags ,
382
+ [MODES .category ]: $globals .icons .categories ,
383
383
[MODES .export ]: $globals .icons .database ,
384
384
[MODES .delete ]: $globals .icons .delete ,
385
385
[MODES .updateSettings ]: $globals .icons .cog ,
Original file line number Diff line number Diff line change 3
3
<RecipeOrganizerPage
4
4
v-if =" items"
5
5
:items =" items"
6
- :icon =" $globals.icons.tags "
6
+ :icon =" $globals.icons.categories "
7
7
item-type =" categories"
8
8
@delete =" actions.deleteOne"
9
9
@update =" actions.updateOne"
Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ export default defineComponent({
341
341
342
342
const iconText: { [key : string ]: string } = {
343
343
totalUsers: $globals .icons .user ,
344
- totalCategories: $globals .icons .tags ,
344
+ totalCategories: $globals .icons .categories ,
345
345
totalTags: $globals .icons .tags ,
346
346
totalTools: $globals .icons .potSteam ,
347
347
};
You can’t perform that action at this time.
0 commit comments