fix: breaking attribute coercion behavior
see: https://v3.vuejs.org/guide/migration/attribute-coercion.html#overview
This commit is contained in:
parent
fe27a432c7
commit
697ea12c8e
14 changed files with 18 additions and 18 deletions
|
|
@ -5,7 +5,7 @@
|
|||
<div class="control">
|
||||
<input
|
||||
:class="{ disabled: taskService.loading }"
|
||||
:disabled="taskService.loading"
|
||||
:disabled="taskService.loading || null"
|
||||
@change="editTaskSubmit()"
|
||||
class="input"
|
||||
id="tasktext"
|
||||
|
|
|
|||
Reference in a new issue