mirror of
https://github.com/portainer/portainer.git
synced 2025-07-27 17:29:39 +02:00
fix(containers): fix an issue with hidden labels (#740)
This commit is contained in:
parent
c9d50641c8
commit
0a8501fcbb
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ angular.module('portainer.services')
|
||||||
.then(function success(data) {
|
.then(function success(data) {
|
||||||
var containers = data;
|
var containers = data;
|
||||||
if (hiddenLabels) {
|
if (hiddenLabels) {
|
||||||
containers = ContainerHelper.hideContainers(d, hiddenLabels);
|
containers = ContainerHelper.hideContainers(data, hiddenLabels);
|
||||||
}
|
}
|
||||||
deferred.resolve(data);
|
deferred.resolve(data);
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue