mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-31 12:15:42 -04:00
Fix: Remove dead search link (#2158)
* removed old references to search page * changed overflow from scroll to auto
This commit is contained in:
parent
df8459a95c
commit
eaa6ee57a9
@ -31,7 +31,7 @@
|
|||||||
<div class="mr-auto">
|
<div class="mr-auto">
|
||||||
{{ $t("search.results") }}
|
{{ $t("search.results") }}
|
||||||
</div>
|
</div>
|
||||||
<router-link to="/search?advanced=true"> {{ $t("search.advanced-search") }} </router-link>
|
<router-link to="/"> {{ $t("search.advanced-search") }} </router-link>
|
||||||
</v-card-actions>
|
</v-card-actions>
|
||||||
|
|
||||||
<RecipeCardMobile
|
<RecipeCardMobile
|
||||||
@ -180,6 +180,6 @@ export default defineComponent({
|
|||||||
|
|
||||||
<style>
|
<style>
|
||||||
.scroll {
|
.scroll {
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -51,7 +51,6 @@ export default defineComponent({
|
|||||||
const buttons = [
|
const buttons = [
|
||||||
{ icon: $globals.icons.home, to: "/", text: i18n.t("general.home") },
|
{ icon: $globals.icons.home, to: "/", text: i18n.t("general.home") },
|
||||||
{ icon: $globals.icons.primary, to: "/recipes/all", text: i18n.t("page.all-recipes") },
|
{ icon: $globals.icons.primary, to: "/recipes/all", text: i18n.t("page.all-recipes") },
|
||||||
{ icon: $globals.icons.search, to: "/search", text: i18n.t("search.search") },
|
|
||||||
];
|
];
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user