Skip to content

Commit

Permalink
use a : instead of a . to separate host and port. (#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
rueckstiess authored and pzrq committed Nov 11, 2016
1 parent c17b204 commit 41d2305
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class SidebarInstanceProperties extends React.Component {
return '';
}

return `${instance.hostname}.${instance.port}`;
return `${instance.hostname}:${instance.port}`;
}

getVersionName() {
Expand Down

0 comments on commit 41d2305

Please sign in to comment.