1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-04 21:35:23 +02:00

feat(node-details): move engine labels from node-details panel to engine-details panel (#2966)

This commit is contained in:
xAt0mZ 2019-06-25 01:22:45 +02:00 committed by Anthony Lapenna
parent 7a8a54c96a
commit 6591498ab9
3 changed files with 6 additions and 6 deletions

View file

@ -62,7 +62,8 @@ angular.module('portainer.docker').controller('NodeDetailsViewController', [
return {
releaseVersion: node.EngineVersion,
volumePlugins: transformPlugins(node.Plugins, 'Volume'),
networkPlugins: transformPlugins(node.Plugins, 'Network')
networkPlugins: transformPlugins(node.Plugins, 'Network'),
engineLabels: node.EngineLabels,
};
}
@ -73,7 +74,6 @@ angular.module('portainer.docker').controller('NodeDetailsViewController', [
managerAddress: node.ManagerAddr,
availability: node.Availability,
status: node.Status,
engineLabels: node.EngineLabels,
nodeLabels: node.Labels
};
}