mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-16 00:42:18 +00:00
Ensured sort value is true for checklists (#9386)
This commit is contained in:
parent
47ab8f2073
commit
286c8c7530
1 changed files with 2 additions and 2 deletions
|
|
@ -11,7 +11,7 @@
|
|||
label(v-once) {{ `${$t('text')}*` }}
|
||||
input.form-control.title-input(
|
||||
type="text", :class="[`${cssClass}-modal-input`]",
|
||||
required, v-model="task.text",
|
||||
required, v-model="task.text",
|
||||
autofocus, spellcheck="true",
|
||||
)
|
||||
.form-group
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
.option(v-if="checklistEnabled")
|
||||
label(v-once) {{ $t('checklist') }}
|
||||
br
|
||||
div(v-sortable='', @onsort='sortedChecklist')
|
||||
div(v-sortable='true', @onsort='sortedChecklist')
|
||||
.inline-edit-input-group.checklist-group.input-group(v-for="(item, $index) in checklist")
|
||||
span.grippy
|
||||
input.inline-edit-input.checklist-item.form-control(type="text", v-model="item.text")
|
||||
|
|
|
|||
Loading…
Reference in a new issue