Fix the VmWare tab after lodash upgrade

VmWare tab displays in normal way

Change-Id: Icfd57e87c61871130bf01330f1cabebe7fcb3df0
Closes-Bug: 1585999
This commit is contained in:
Anton Zemlyanov 2016-05-26 14:34:33 +03:00
parent b0e07ce38e
commit c44017fe3d
1 changed files with 3 additions and 0 deletions

View File

@ -102,6 +102,9 @@ var BaseCollection = Backbone.Collection
},
testRestrictions() {
_.invokeMap(this.models, 'testRestrictions', restrictionModels);
},
invokeMap(path, ...args) {
_.invokeMap(this.models, path, ...args);
}
});