1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-20 13:59:40 +02:00

Fixed grunt style warnings.

This commit is contained in:
Kevan Ahlquist 2015-08-25 01:07:08 -05:00
parent 8a7f8f7c37
commit 6cb658a1ef
3 changed files with 5 additions and 5 deletions

View file

@ -50,7 +50,7 @@ angular.module('containersNetwork', ['ngVis'])
this.hasEdge = function (from, to) {
return this.edges.getIds({
filter: function (item) {
return item.from == from.Id && item.to == to.Id;
return item.from === from.Id && item.to === to.Id;
}
}).length > 0;
};