Merge pull request #1783 from ClemMakesApps/fix-http-settings-url

Remove redundant http:// formatting
This commit is contained in:
French Ben 2016-06-27 16:01:51 -07:00 committed by GitHub
commit fc0c70da0d
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ var ContainerSettingsPorts = React.createClass({
let port = e.target.value;
// save updated port
ports[key] = _.extend(ports[key], {
url: 'http://' + ports[key].ip + ':' + port,
url: ports[key].ip + ':' + port,
port: port,
error: null
});