diff options
author | sebdet <sebastien.determe@intl.att.com> | 2019-07-19 16:51:19 +0200 |
---|---|---|
committer | sebdet <sebastien.determe@intl.att.com> | 2019-07-19 16:51:19 +0200 |
commit | 190227aa1bbcdc164a17fbcc8de06f78c11ebdff (patch) | |
tree | 587662d4175a0d22abe15c604c1aa752b9e45fda /ui-react/src/LoopUI.js | |
parent | c1ccc5428cdb26b47dc6f6f5f8222808c3db3075 (diff) |
Rework the status
Add status data when we load a loop + rework the look and feel of status
DIV
Issue-ID: CLAMP-429
Change-Id: Ibeb58e2653d603f29a0b71023d8afd49cf89aba1
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'ui-react/src/LoopUI.js')
-rw-r--r-- | ui-react/src/LoopUI.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui-react/src/LoopUI.js b/ui-react/src/LoopUI.js index 1f79d39eb..40ae1379c 100644 --- a/ui-react/src/LoopUI.js +++ b/ui-react/src/LoopUI.js @@ -46,7 +46,7 @@ const ProjectNameStyled = styled.a` ` const LoopViewDivStyled = styled.div` - height: 90vh; + height: 100%; overflow: hidden; margin-left: 10px; margin-right: 10px; @@ -138,7 +138,7 @@ export default class LoopUI extends React.Component { renderLoopViewHeader() { return ( <LoopViewHeaderDivStyled> - Loop Viewer - <LoopViewLoopNameSpanStyled id="loop_name">{this.state.loopName}</LoopViewLoopNameSpanStyled> + Loop Viewer - {this.state.loopName} </LoopViewHeaderDivStyled> ); } @@ -147,8 +147,8 @@ export default class LoopUI extends React.Component { return ( <LoopViewBodyDivStyled> <LoopSvg loopCache={this.state.loopCache} /> + <LoopStatus loopCache={this.state.loopCache}/> <LoopLogs loopCache={this.state.loopCache} /> - <LoopStatus /> </LoopViewBodyDivStyled> ); } |