Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1655 from twitter/fix_ui_aggregate_topology_metrics
Browse files Browse the repository at this point in the history
Fix aggregate topology metric dot colors for firefox and safari.
  • Loading branch information
kramasamy authored Jan 5, 2017
2 parents 1e85235 + 26a4393 commit 41a7da0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion heron/tools/ui/resources/static/js/plan-stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@
function colorTopLevel(value, statTableCell) {
topLevelStatus.filter(function (d) {
return d === statTableCell;
}).style('color', function (d) {
}).style('fill', function (d) {
return d.color = !_.isNumber(value) || isNaN(value) ? NO_DATA_COLOR : statTableCell.metric.colorScale(value);
}).style('visibility', null);
}
Expand Down
Loading

0 comments on commit 41a7da0

Please sign in to comment.