1
0

fix: ATTR_ENUMERATED_COERCION in a few places

This commit is contained in:
kolaente
2021-10-17 18:52:05 +02:00
parent 1864359751
commit 571b019c00
8 changed files with 12 additions and 12 deletions

View File

@ -32,7 +32,7 @@
<div class="control">
<input
:class="{ 'disabled': listService.loading}"
:disabled="listService.loading"
:disabled="listService.loading ? true : null"
@keyup.enter="save"
class="input"
id="identifier"
@ -48,7 +48,7 @@
<editor
:class="{ 'disabled': listService.loading}"
:disabled="listService.loading"
:preview-is-default="false"
:previewIsDefault="false"
id="listdescription"
:placeholder="$t('list.edit.descriptionPlaceholder')"
v-model="list.description"