Remove unnecessary key props (#18501)

This commit is contained in:
Nicola Krumschmidt
2023-05-05 15:16:34 +02:00
committed by GitHub
parent 608255d151
commit 84bdf1e7b7
4 changed files with 2 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div :key="field.field" class="field" :class="[field.meta?.width || 'full', { invalid: validationError }]">
<div class="field" :class="[field.meta?.width || 'full', { invalid: validationError }]">
<v-menu v-if="field.hideLabel !== true" placement="bottom-start" show-arrow>
<template #activator="{ toggle, active }">
<form-field-label

View File

@@ -22,7 +22,6 @@
<div
v-if="isActive"
:id="id"
:key="id"
v-click-outside="{
handler: deactivate,
middleware: onClickOutsideMiddleware,

View File

@@ -150,7 +150,6 @@
<v-form
ref="form"
:key="collection"
v-model="edits"
:autofocus="isNew"
:disabled="isNew ? false : updateAllowed === false"

View File

@@ -14,7 +14,7 @@ const path = computed(() => route.path);
<template>
<Layout>
<template #doc-footer-before>
<ArticleFeedback :key="path" :url="path" :title="title" />
<ArticleFeedback :url="path" :title="title" />
</template>
</Layout>
</template>