mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
disabling checking off a subtask if not assigned to a user (#10357)
This commit is contained in:
committed by
Matteo Pagliazzi
parent
38d78de4b3
commit
355f0fedfb
@@ -64,7 +64,7 @@
|
|||||||
type="checkbox",
|
type="checkbox",
|
||||||
:checked="item.completed",
|
:checked="item.completed",
|
||||||
@change="toggleChecklistItem(item)",
|
@change="toggleChecklistItem(item)",
|
||||||
:disabled="castingSpell",
|
:disabled="castingSpell || !isUser",
|
||||||
:id="`checklist-${item.id}`"
|
:id="`checklist-${item.id}`"
|
||||||
)
|
)
|
||||||
label.custom-control-label(v-markdown="item.text", :for="`checklist-${item.id}`")
|
label.custom-control-label(v-markdown="item.text", :for="`checklist-${item.id}`")
|
||||||
|
|||||||
Reference in New Issue
Block a user