Skip to content

Commit

Permalink
align legend items to the right for bottom position
Browse files Browse the repository at this point in the history
  • Loading branch information
kristw committed Sep 5, 2018
1 parent 25ae2ba commit aa8f7d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/assets/src/visualizations/WithLegend.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class WithLegend extends React.Component {
switch (position) {
case 'left': return 'flex-start';
case 'right': return 'flex-start';
case 'bottom': return 'center';
case 'bottom': return 'flex-end';
default:
case 'top': return 'flex-end';
}
Expand Down

0 comments on commit aa8f7d2

Please sign in to comment.