mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-31 04:05:33 -04:00
fix: Homepage icon and text update (#3922)
Co-authored-by: Timothy Pace <Timothy@timothy.dev> Co-authored-by: boc-the-git <3479092+boc-the-git@users.noreply.github.com>
This commit is contained in:
parent
9d58f9b266
commit
cc324b29ae
@ -126,8 +126,8 @@
|
|||||||
<RecipeCardSection
|
<RecipeCardSection
|
||||||
v-if="state.ready"
|
v-if="state.ready"
|
||||||
class="mt-n5"
|
class="mt-n5"
|
||||||
:icon="$globals.icons.search"
|
:icon="$globals.icons.silverwareForkKnife"
|
||||||
:title="$tc('search.results')"
|
:title="$tc('general.recipes')"
|
||||||
:recipes="recipes"
|
:recipes="recipes"
|
||||||
:query="passedQueryWithSeed"
|
:query="passedQueryWithSeed"
|
||||||
@replaceRecipes="replaceRecipes"
|
@replaceRecipes="replaceRecipes"
|
||||||
|
@ -157,9 +157,9 @@
|
|||||||
|
|
||||||
const topLinks = computed<SidebarLinks>(() => [
|
const topLinks = computed<SidebarLinks>(() => [
|
||||||
{
|
{
|
||||||
icon: $globals.icons.search,
|
icon: $globals.icons.silverwareForkKnife,
|
||||||
to: `/g/${groupSlug.value}`,
|
to: `/g/${groupSlug.value}`,
|
||||||
title: i18n.tc("sidebar.search"),
|
title: i18n.tc("general.recipes"),
|
||||||
restricted: true,
|
restricted: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -149,6 +149,7 @@ import {
|
|||||||
mdiRotateRight,
|
mdiRotateRight,
|
||||||
mdiBookOpenPageVariant,
|
mdiBookOpenPageVariant,
|
||||||
mdiFileCabinet,
|
mdiFileCabinet,
|
||||||
|
mdiSilverwareForkKnife
|
||||||
} from "@mdi/js";
|
} from "@mdi/js";
|
||||||
|
|
||||||
export const icons = {
|
export const icons = {
|
||||||
@ -249,6 +250,7 @@ export const icons = {
|
|||||||
search: mdiMagnify,
|
search: mdiMagnify,
|
||||||
shareVariant: mdiShareVariant,
|
shareVariant: mdiShareVariant,
|
||||||
shuffleVariant: mdiShuffleVariant,
|
shuffleVariant: mdiShuffleVariant,
|
||||||
|
silverwareForkKnife: mdiSilverwareForkKnife,
|
||||||
sort: mdiSort,
|
sort: mdiSort,
|
||||||
sortAscending: mdiSortAscending,
|
sortAscending: mdiSortAscending,
|
||||||
sortDescending: mdiSortDescending,
|
sortDescending: mdiSortDescending,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user