1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-20 05:49:40 +02:00

feat(global): change the strategy used to determine if swarm mode is used

This commit is contained in:
Anthony Lapenna 2016-09-23 18:02:03 +12:00
parent fe63f9939a
commit e27282de3c
7 changed files with 7 additions and 7 deletions

View file

@ -56,7 +56,7 @@ function ($scope, $state, Config, Info, Container, Image, Volume, Network, Messa
Config.$promise.then(function (c) {
var swarm = c.swarm;
Info.get({}, function(info) {
if (swarm && info.Swarm) {
if (swarm && !_.startsWith(info.ServerVersion, 'swarm')) {
$scope.swarm_mode = true;
}
});