1
0
Fork 0
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:
Anthony Lapenna 2017-03-12 18:01:52 +01:00 committed by GitHub
parent 08868eb3e0
commit 22c02a8fe9
2 changed files with 2 additions and 2 deletions

View file

@ -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];