Merge branch 'mikesir87-128-replace-underscores-in-urls'

This commit is contained in:
Marcos Lilljedahl
2017-05-12 16:26:03 -03:00
5 changed files with 8 additions and 8 deletions

View File

@@ -185,7 +185,7 @@
}
$scope.getProxyUrl = function(instance, port) {
var url = window.location.protocol + '//pwd' + instance.ip.replace(/\./g, '_') + '-' + port + '.' + window.location.host;
var url = window.location.protocol + '//pwd' + instance.ip.replace(/\./g, '-') + '-' + port + '.' + window.location.host;
return url;
}