mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-19 05:09:40 +02:00
fix: consoldate stores to fix mismatched state
This commit is contained in:
parent
f831791db2
commit
d2a9f7ca24
15 changed files with 348 additions and 350 deletions
|
@ -19,16 +19,12 @@
|
|||
<div class="ingredient-grid">
|
||||
<div class="ingredient-col-1">
|
||||
<ul>
|
||||
<li v-for="(text, index) in splitIngredients.firstHalf" :key="index">
|
||||
{{ text }}
|
||||
</li>
|
||||
<li v-for="(text, index) in splitIngredients.firstHalf" :key="index" v-html="text" />
|
||||
</ul>
|
||||
</div>
|
||||
<div class="ingredient-col-2">
|
||||
<ul>
|
||||
<li v-for="(text, index) in splitIngredients.secondHalf" :key="index">
|
||||
{{ text }}
|
||||
</li>
|
||||
<li v-for="(text, index) in splitIngredients.secondHalf" :key="index" v-html="text" />
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue