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/api | |
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/api')
-rw-r--r-- | ui-react/src/api/LoopCache.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ui-react/src/api/LoopCache.js b/ui-react/src/api/LoopCache.js index b854c7c1..3ee5acc6 100644 --- a/ui-react/src/api/LoopCache.js +++ b/ui-react/src/api/LoopCache.js @@ -106,6 +106,10 @@ export default class LoopCache { return this.loopJsonCache.loopLogs; } + getComputedState() { + return this.loopJsonCache.lastComputedState; + } + getComponentStates() { return this.loopJsonCache.components; } |