Skip to content

Commit

Permalink
do not convert value to lowercase when looking up color (#6384)
Browse files Browse the repository at this point in the history
  • Loading branch information
kristw authored and williaster committed Nov 13, 2018
1 parent d9a7d56 commit cb55668
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion superset/assets/src/visualizations/nvd3/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ const TIME_SHIFT_PATTERN = /\d+ \w+ offset/;
export function cleanColorInput(value) {
// for superset series that should have the same color
return String(value).trim()
.toLowerCase()
.split(', ')
.filter(k => !TIME_SHIFT_PATTERN.test(k))
.join(', ');
Expand Down

0 comments on commit cb55668

Please sign in to comment.