-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Show table of cell health state changes instead of chart #3135
Conversation
- Table shows changes to cell health - To test more populated table make the following change to `src/frontend/app/shared/components/list/list-types/cf-cell-health/cf-cell-health-source.ts` const values = response[0].data.result[0].values; to const values = response[0].data.result[0].values.map(value => { const timestamp = value['0']; return [ timestamp, timestamp * 1000 % 2 === 0 ? '1' : '0' ]; });
Hey richard-cox! Thanks for submitting this pull request! I'm here to inform the recipients of the pull request that you and the commit authors have already signed the CLA. |
Codecov Report
@@ Coverage Diff @@
## v2-master #3135 +/- ##
=============================================
+ Coverage 46.31% 71.11% +24.8%
=============================================
Files 630 632 +2
Lines 27580 27683 +103
Branches 6271 6297 +26
=============================================
+ Hits 12773 19687 +6914
+ Misses 14807 7996 -6811 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Clicking the refresh button causes the table to become empty.
If you select a custom date range that does have any data then an exception is thrown.
I'm a little un-easy about having If we decided to create a separate component for #3162 then we should ensure we should remove the |
I'm happy to merge this once the gate has passed. |
fixes Improve Cell Health visual #3127
Table shows changes to cell health
To test more populated table make the following change to
src/frontend/app/shared/components/list/list-types/cf-cell-health/cf-cell-health-source.ts
to