mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-05 20:42:23 -07:00
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
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:
parent
2673834a9f
commit
3a4222c6c1
1 changed files with 4 additions and 6 deletions
|
@ -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,
|
||||
};
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue