Merge "Fixed processing of node properties with null value"
This commit is contained in:
commit
3a4b40c818
@ -80,7 +80,8 @@
|
|||||||
* @return {boolean} True if the item is a number, string, or date
|
* @return {boolean} True if the item is a number, string, or date
|
||||||
*/
|
*/
|
||||||
function isProperty(item) {
|
function isProperty(item) {
|
||||||
return angular.isNumber(item) ||
|
return item === null ||
|
||||||
|
angular.isNumber(item) ||
|
||||||
angular.isString(item) ||
|
angular.isString(item) ||
|
||||||
angular.isDate(item);
|
angular.isDate(item);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user