mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-05 03:52:14 +00:00
Merge pull request #1538 from djuretic/develop
Do not allow empty task names when editing tasks
This commit is contained in:
commit
bb2b17b24e
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ li(ng-repeat='task in user[list.type + "s"]', class='task {{taskClasses(task,use
|
|||
fieldset.option-group
|
||||
// {{#unless taskInChallenge(task)}}
|
||||
label.option-title Text
|
||||
input.option-content(type='text', ng-model='task.text')
|
||||
input.option-content(type='text', ng-model='task.text', required)
|
||||
// {{/}}
|
||||
label.option-title Extra Notes
|
||||
// {{#if taskInChallenge(task)}}
|
||||
|
|
|
|||
Loading…
Reference in a new issue