mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 08:14:30 -04:00
Add unique IDs to recipe notes (#2919)
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div v-if="value.length > 0 || edit" class="mt-8">
|
<div v-if="value.length > 0 || edit" class="mt-8">
|
||||||
<h2 class="my-4">{{ $t("recipe.note") }}</h2>
|
<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 v-if="edit">
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<div class="d-flex align-center">
|
<div class="d-flex align-center">
|
||||||
|
|||||||
Reference in New Issue
Block a user