mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-09 03:04:54 -04:00
Add unique IDs to recipe notes (#2919)
This commit is contained in:
parent
8ca5a9454e
commit
29c3cb2296
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div v-if="value.length > 0 || edit" class="mt-8">
|
||||
<h2 class="my-4">{{ $t("recipe.note") }}</h2>
|
||||
<div v-for="(note, index) in value" :key="'note' + index" class="mt-1">
|
||||
<div v-for="(note, index) in value" :id="'note' + index" :key="'note' + index" class="mt-1">
|
||||
<v-card v-if="edit">
|
||||
<v-card-text>
|
||||
<div class="d-flex align-center">
|
||||
|
Loading…
x
Reference in New Issue
Block a user