Merge "Fix metadata removal" into stable/newton

This commit is contained in:
Jenkins 2016-09-27 16:08:57 +00:00 committed by Gerrit Code Review
commit 4a00536a91
1 changed files with 1 additions and 1 deletions

View File

@ -61,8 +61,8 @@
angular.forEach(removed, function bug1606988(value, removedKey) {
angular.forEach(ctrl.tree.flatTree, function compareToDefinitions(item) {
if (item.leaf && removedKey.toLocaleLowerCase() === item.leaf.name.toLocaleLowerCase()) {
removed[item.leaf.name] = value;
delete removed[removedKey];
removed[item.leaf.name] = value;
}
});
});