You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 30, 2018. It is now read-only.
Issue similar to #88
I fixed it in
angular-formly-templates-bootstrap/src/types/multiCheckbox.js
Lines 36 to 42 in 26ec0f5
replacing
$scope.multiCheckbox.checked[index] = modelValue.indexOf(newOptionsValues[index][valueProp]) !== -1;
by
$scope.multiCheckbox.checked[index] = modelValue.map(function(t){return t[valueProp];}).indexOf(newOptionsValues[index][valueProp]) !== -1;
And in the setModel function
The text was updated successfully, but these errors were encountered: