mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-16 10:03:54 -07:00
fix: general bug fixes (#1547)
* grouped "instructions" header with first section * fixed sort by last updated date * somewhat-hacky bugfix for large screens * modified page size to be divisible by 4 * fixed missing export for new data forms
This commit is contained in:
parent
54c4f19a5c
commit
238f555f5e
4 changed files with 14 additions and 6 deletions
|
@ -35,12 +35,12 @@
|
|||
|
||||
<!-- Instructions -->
|
||||
<section>
|
||||
<v-card-title class="headline pl-0">{{ $t("recipe.instructions") }}</v-card-title>
|
||||
<div
|
||||
v-for="(instructionSection, sectionIndex) in instructionSections"
|
||||
:key="`instruction-section-${sectionIndex}`"
|
||||
:class="{ 'print-section': instructionSection.sectionName }"
|
||||
>
|
||||
<v-card-title v-if="!sectionIndex" class="headline pl-0">{{ $t("recipe.instructions") }}</v-card-title>
|
||||
<div v-for="(step, stepIndex) in instructionSection.instructions" :key="`instruction-${stepIndex}`">
|
||||
<div class="print-section">
|
||||
<h4 v-if="step.title" :key="`instruction-title-${stepIndex}`" class="instruction-title mb-2">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue