Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(747)

Unified Diff: dashboard/dashboard/elements/group-report-page.html

Issue 2557743004: Adding in abs delta column to the alerts table (Closed)
Patch Set: adding in tests Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dashboard/dashboard/elements/alerts-table-test.html ('k') | dashboard/dashboard/find_anomalies_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/dashboard/elements/group-report-page.html
diff --git a/dashboard/dashboard/elements/group-report-page.html b/dashboard/dashboard/elements/group-report-page.html
index ef4c647dc162224b6d3caa74b7676869ce112c9c..a3acda0fea4d6d601740ddcfbbb8b69a09b0c62c 100644
--- a/dashboard/dashboard/elements/group-report-page.html
+++ b/dashboard/dashboard/elements/group-report-page.html
@@ -141,11 +141,20 @@ found in the LICENSE file.
properties: {
extraColumns: {
type: Array,
- value: () =>
- [{
+ value: () => ([
+ {
'key': 'percent_changed',
'label': 'Delta %'
- }]
+ },
+ {
+ 'key': 'absolute_delta',
+ 'label': 'Abs Delta'
+ },
+ {
+ 'key': 'units',
+ 'label': 'Units'
+ }
+ ])
},
loading: {
type: Boolean,
« no previous file with comments | « dashboard/dashboard/elements/alerts-table-test.html ('k') | dashboard/dashboard/find_anomalies_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698