mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-01 19:50:37 +00:00
disabling checking off a subtask if not assigned to a user (#10357)
This commit is contained in:
parent
38d78de4b3
commit
355f0fedfb
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@
|
|||
type="checkbox",
|
||||
:checked="item.completed",
|
||||
@change="toggleChecklistItem(item)",
|
||||
:disabled="castingSpell",
|
||||
:disabled="castingSpell || !isUser",
|
||||
:id="`checklist-${item.id}`"
|
||||
)
|
||||
label.custom-control-label(v-markdown="item.text", :for="`checklist-${item.id}`")
|
||||
|
|
|
|||
Loading…
Reference in a new issue