Hide 80 web port

This commit is contained in:
Ildar Kamalov
2019-02-06 17:32:32 +03:00
parent 672ff33879
commit ba678ffa82
4 changed files with 33 additions and 20 deletions

View File

@@ -6,7 +6,7 @@ import { Trans, withNamespaces } from 'react-i18next';
import flow from 'lodash/flow';
import Controls from './Controls';
import { getAddress } from '../../helpers/helpers';
import { getWebAddress } from '../../helpers/helpers';
let Submit = props => (
<div className="setup__step">
@@ -20,7 +20,7 @@ let Submit = props => (
</div>
<Controls
openDashboard={props.openDashboard}
address={getAddress(props.webIp, props.webPort)}
address={getWebAddress(props.webIp, props.webPort)}
/>
</div>
);