Skip to content

Commit

Permalink
[line chart] fix time shift color (apache#4202)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch authored and hughhhh committed Jan 18, 2018
1 parent 23cc83f commit 151657b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/viz.py
Original file line number Diff line number Diff line change
Expand Up @@ -946,7 +946,7 @@ def to_series(self, df, classed='', title_suffix=''):
if isinstance(series_title, string_types):
series_title += title_suffix
elif title_suffix and isinstance(series_title, (list, tuple)):
series_title = series_title + (title_suffix,)
series_title = text_type(series_title[-1]) + title_suffix

values = []
for ds in df.index:
Expand Down

0 comments on commit 151657b

Please sign in to comment.