mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 06:49:40 +02:00
fix(swarm): fix an issue when trying to access node view (#650)
This commit is contained in:
parent
08868eb3e0
commit
22c02a8fe9
2 changed files with 2 additions and 2 deletions
|
@ -75,7 +75,7 @@ function ($scope, Info, Version, Node, Pagination) {
|
|||
var node = {};
|
||||
node.name = info[offset][0];
|
||||
node.ip = info[offset][1];
|
||||
node.id = info[offset + 1][1];
|
||||
node.Id = info[offset + 1][1];
|
||||
node.status = info[offset + 2][1];
|
||||
node.containers = info[offset + 3][1];
|
||||
node.cpu = info[offset + 4][1].split('/')[1];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue