mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
Remove unnecessary key props (#18501)
This commit is contained in:
committed by
GitHub
parent
608255d151
commit
84bdf1e7b7
@@ -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
|
||||
|
||||
@@ -22,7 +22,6 @@
|
||||
<div
|
||||
v-if="isActive"
|
||||
:id="id"
|
||||
:key="id"
|
||||
v-click-outside="{
|
||||
handler: deactivate,
|
||||
middleware: onClickOutsideMiddleware,
|
||||
|
||||
@@ -150,7 +150,6 @@
|
||||
|
||||
<v-form
|
||||
ref="form"
|
||||
:key="collection"
|
||||
v-model="edits"
|
||||
:autofocus="isNew"
|
||||
:disabled="isNew ? false : updateAllowed === false"
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user