fix: shopping list button in one row (#5547)
Some checks are pending
CodeQL / Analyze (push) Waiting to run
Docker Nightly Production / Backend Server Tests (push) Waiting to run
Docker Nightly Production / Frontend Tests (push) Waiting to run
Docker Nightly Production / Build Package (push) Waiting to run
Docker Nightly Production / Build Tagged Release (push) Blocked by required conditions
Docker Nightly Production / Notify Discord (push) Blocked by required conditions
Release Drafter / ✏️ Draft release (push) Waiting to run

This commit is contained in:
Kuchenpirat 2025-06-20 11:59:13 +02:00 committed by GitHub
parent 2673834a9f
commit 3a4222c6c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -41,9 +41,6 @@
<v-container>
<v-row>
<v-col
cols="12"
sm="4"
md="3"
class="text-left"
>
<ButtonLink
@ -53,9 +50,8 @@
/>
</v-col>
<v-col
cols="12"
sm="4"
md="6"
v-if="mdAndUp"
cols="6"
class="d-none d-sm-flex justify-center"
>
<v-img
@ -438,6 +434,7 @@ export default defineNuxtComponent({
},
// middleware: "sidebase-auth",
setup() {
const { mdAndUp } = useDisplay();
const i18n = useI18n();
const $auth = useMealieAuth();
const preferences = useShoppingListPreferences();
@ -1255,6 +1252,7 @@ export default defineNuxtComponent({
allFoods,
getTextColor,
isOffline,
mdAndUp,
};
},
});