fix(containers): fix an issue with hidden labels (#740)

pull/742/head
Adrian Dimitrov 2017-03-29 18:47:56 +03:00 committed by Anthony Lapenna
parent c9d50641c8
commit 0a8501fcbb
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ angular.module('portainer.services')
.then(function success(data) {
var containers = data;
if (hiddenLabels) {
containers = ContainerHelper.hideContainers(d, hiddenLabels);
containers = ContainerHelper.hideContainers(data, hiddenLabels);
}
deferred.resolve(data);
})