Reverted extra check

This commit is contained in:
Robert
2019-03-12 09:52:03 +01:00
parent 0d58b4c42b
commit 1509c7364c

View File

@@ -50,7 +50,7 @@ angular.module("umbraco").controller("Umbraco.PropertyEditors.CheckboxListContro
//get all of the same values between the arrays
var same = _.intersection($scope.model.value, selectedVals);
//if the lengths are the same as the value, then we are in sync, just exit
if (same.length === $scope.model.value.length && same.length === selectedVals.length) {
if (same.length === $scope.model.value.length === selectedVals.length) {
return;
}