diff options
author | Aijana Schumann <aijana.schumann@highstreet-technologies.com> | 2020-09-03 15:54:52 +0200 |
---|---|---|
committer | Aijana S <aijana.schumann@highstreet-technologies.com> | 2020-09-03 15:10:33 +0000 |
commit | 0b7b69385f71c353510987d9e6045691fcba8afa (patch) | |
tree | ae7b985065f29f1bf34a05fcd5ed06abc3473057 /sdnr/wt/odlux/apps/linkCalculationApp/src/components | |
parent | 59b9f3a76de1cca0b833a7841dd7dcaeb03f0f65 (diff) |
Update LinkCalculator
update linkCalculator with latest changes
Issue-ID: CCSDK-2714
Signed-off-by: Aijana Schumann <aijana.schumann@highstreet-technologies.com>
Change-Id: Ie921da17f46a5e13e08a17d6433c80f7213220f2
Diffstat (limited to 'sdnr/wt/odlux/apps/linkCalculationApp/src/components')
-rw-r--r-- | sdnr/wt/odlux/apps/linkCalculationApp/src/components/connectionInfo.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdnr/wt/odlux/apps/linkCalculationApp/src/components/connectionInfo.tsx b/sdnr/wt/odlux/apps/linkCalculationApp/src/components/connectionInfo.tsx index c798e481f..cae6fbd9e 100644 --- a/sdnr/wt/odlux/apps/linkCalculationApp/src/components/connectionInfo.tsx +++ b/sdnr/wt/odlux/apps/linkCalculationApp/src/components/connectionInfo.tsx @@ -30,7 +30,7 @@ type props = Connect<typeof mapStateToProps, typeof mapDispatchToProps>; const ConnectionInfo: React.FunctionComponent<props> = (props) => { return ( - (props.isCalculationServerReachable === false)? <Paper style={{padding:5, position: 'absolute', top: 160, width: 230, left:"40%"}}> + (props.isCalculationServerReachable === false)? <Paper style={{padding:5, width: 230, position:"absolute", top:"40%", left:"40%"}}> <div style={{display: 'flex', flexDirection: 'column'}}> <div style={{'alignSelf': 'center', marginBottom:5}}> <Typography> <FontAwesomeIcon icon={faExclamationTriangle} /> Connection Error</Typography></div> {props.isCalculationServerReachable === false && <Typography> Calculation data can't be loaded.</Typography>} |