mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-23 15:19:41 +02:00
fix: printer page refs (#1314)
This commit is contained in:
parent
3542bb0927
commit
c3bdfe7b3b
1 changed files with 2 additions and 2 deletions
|
@ -19,14 +19,14 @@
|
||||||
<div class="ingredient-grid">
|
<div class="ingredient-grid">
|
||||||
<div class="ingredient-col-1">
|
<div class="ingredient-col-1">
|
||||||
<ul>
|
<ul>
|
||||||
<li v-for="(text, index) in splitIngredients.value.firstHalf" :key="index">
|
<li v-for="(text, index) in splitIngredients.firstHalf" :key="index">
|
||||||
{{ text }}
|
{{ text }}
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="ingredient-col-2">
|
<div class="ingredient-col-2">
|
||||||
<ul>
|
<ul>
|
||||||
<li v-for="(text, index) in splitIngredients.value.secondHalf" :key="index">
|
<li v-for="(text, index) in splitIngredients.secondHalf" :key="index">
|
||||||
{{ text }}
|
{{ text }}
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue