Merge "Fixed processing of node properties with null value"

This commit is contained in:
Jenkins 2016-10-07 09:55:55 +00:00 committed by Gerrit Code Review
commit 3a4b40c818

View File

@ -80,7 +80,8 @@
* @return {boolean} True if the item is a number, string, or date
*/
function isProperty(item) {
return angular.isNumber(item) ||
return item === null ||
angular.isNumber(item) ||
angular.isString(item) ||
angular.isDate(item);
}