mirror of
https://github.com/portainer/portainer.git
synced 2025-07-28 09:49:40 +02:00
fix(app/stacks): stacks incorrectly marked as orphaned (#10273)
This commit is contained in:
parent
b40b305e63
commit
dfd415c62e
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ angular.module('portainer.app').factory('StackService', [
|
||||||
})
|
})
|
||||||
.then(function success(data) {
|
.then(function success(data) {
|
||||||
var stacks = data.stacks.map(function (item) {
|
var stacks = data.stacks.map(function (item) {
|
||||||
return new StackViewModel(item, item.EndpointId == endpointId);
|
return new StackViewModel(item, item.EndpointId != endpointId);
|
||||||
});
|
});
|
||||||
|
|
||||||
var externalStacks = data.externalStacks;
|
var externalStacks = data.externalStacks;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue