This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Description
There is an issue with the checkboxes in form.html.
< input ng-if="item.type=='boolean'" ng-visible="item.readable" ng-enabled="item.writable"
type="checkbox" class="form-control" placeholder="{{item.name}}"
ng-model="taskDetailed.propertyForSaving[item.id].value" style="width:16px;">
with ng-checked it will show when true or false:
< input ng-if="item.type=='boolean'" ng-visible="item.readable" ng-enabled="item.writable"
type="checkbox" class="form-control" placeholder="{{item.name}}"
ng-model="taskDetailed.propertyForSaving[item.id].value" style="width:16px;" ng-checked="{{item.value}}">