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

Unified Diff: tracing/tracing/value/ui/value_set_table.html

Issue 2133963002: Implement Composition.buildFromEvents() (Closed) Base URL: https://github.com/catapult-project/catapult.git@master
Patch Set: . Created 4 years, 5 months 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 | « tracing/tracing/value/ui/histogram_span.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/value/ui/value_set_table.html
diff --git a/tracing/tracing/value/ui/value_set_table.html b/tracing/tracing/value/ui/value_set_table.html
index fc5493b3ddcf0c0cde2e491e1f3ab7cfe09a8b2b..441f588920a238de0fed82df7af75f7d5274f41f 100644
--- a/tracing/tracing/value/ui/value_set_table.html
+++ b/tracing/tracing/value/ui/value_set_table.html
@@ -106,7 +106,7 @@ tr.exportTo('tr.v.ui', function() {
if ((cell instanceof tr.v.NumericValue) &&
(cell.numeric instanceof tr.v.Numeric)) {
- this.$.histogram.style.display = 'block';
+ this.$.histogram.style.display = 'flex';
this.$.histogram.histogram = cell.numeric;
} else {
this.$.histogram.style.display = 'none';
@@ -299,7 +299,9 @@ tr.exportTo('tr.v.ui', function() {
value: function(row) {
var cell = row[displayLabel];
if (cell instanceof tr.v.d.Diagnostic) {
- return tr.v.ui.createDiagnosticSpan(cell);
+ var span = tr.v.ui.createDiagnosticSpan(cell);
+ span.style.textAlign = 'left';
+ return span;
} else if (cell instanceof tr.v.NumericValue) {
return tr.v.ui.createScalarSpan(cell);
} else if (cell === undefined) {
« no previous file with comments | « tracing/tracing/value/ui/histogram_span.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698