mirror of
https://github.com/fspc/BikeShed-1.git
synced 2026-09-16 16:31:38 -04:00
Fix: '', '' -> nil, nil in input generation.
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
- @task_list.tasks.each do |task|
|
||||
.checkbox
|
||||
%label
|
||||
= check_box_tag '', '', task.done, class: 'task_list_task', type: 'checkbox', "data-id": task.id
|
||||
= check_box_tag nil, nil, task.done, class: 'task_list_task', type: 'checkbox', "data-id": task.id
|
||||
= task.task
|
||||
|
||||
.form-group
|
||||
|
||||
Reference in New Issue
Block a user