fix: ATTR_ENUMERATED_COERCION spellcheck on kanban board
This commit is contained in:
parent
4e893a3196
commit
36d5262f1d
2 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
||||||
@blur="save($event.target.textContent)"
|
@blur="save($event.target.textContent)"
|
||||||
@keydown.enter.prevent.stop="$event.target.blur()"
|
@keydown.enter.prevent.stop="$event.target.blur()"
|
||||||
:contenteditable="canWrite ? 'true' : 'false'"
|
:contenteditable="canWrite ? 'true' : 'false'"
|
||||||
spellcheck="false"
|
:spellcheck="false"
|
||||||
>
|
>
|
||||||
{{ task.title.trim() }}
|
{{ task.title.trim() }}
|
||||||
</h1>
|
</h1>
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
@click="focusBucketTitle"
|
@click="focusBucketTitle"
|
||||||
class="title input"
|
class="title input"
|
||||||
:contenteditable="bucketTitleEditable && canWrite && !collapsedBuckets[bucket.id]"
|
:contenteditable="bucketTitleEditable && canWrite && !collapsedBuckets[bucket.id]"
|
||||||
spellcheck="false">{{ bucket.title }}</h2>
|
:spellcheck="false">{{ bucket.title }}</h2>
|
||||||
<span
|
<span
|
||||||
:class="{'is-max': bucket.tasks.length >= bucket.limit}"
|
:class="{'is-max': bucket.tasks.length >= bucket.limit}"
|
||||||
class="limit"
|
class="limit"
|
||||||
|
|
Loading…
Reference in a new issue