mirror of
https://github.com/portainer/portainer.git
synced 2025-08-02 20:35:25 +02:00
fix(stacks): show containers only for standalone (#5080)
This commit is contained in:
parent
43702c2516
commit
b3784792fe
1 changed files with 1 additions and 2 deletions
|
@ -269,8 +269,7 @@ angular.module('portainer.app').controller('StackController', [
|
|||
var stack = data.stack;
|
||||
$scope.groups = data.groups;
|
||||
$scope.stack = stack;
|
||||
$scope.containers = data.containers;
|
||||
$scope.containerNames = ContainerHelper.getContainerNames($scope.containers);
|
||||
$scope.containerNames = ContainerHelper.getContainerNames(data.containers);
|
||||
|
||||
let resourcesPromise = Promise.resolve({});
|
||||
if (stack.Status === 1) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue