Skip to content

Commit

Permalink
[Chart] Fix BigNumber
Browse files Browse the repository at this point in the history
  • Loading branch information
oxystin committed Nov 25, 2018
1 parent dabca80 commit 932ff93
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion superset/assets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"dependencies": {
"@data-ui/event-flow": "^0.0.8",
"@data-ui/sparkline": "^0.0.49",
"@data-ui/xy-chart": "^0.0.50",
"@data-ui/xy-chart": "^0.0.61",
"babel-register": "^6.24.1",
"bootstrap": "^3.3.6",
"bootstrap-slider": "^10.0.0",
Expand Down
12 changes: 6 additions & 6 deletions superset/assets/visualizations/BigNumber.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -182,37 +182,37 @@ function bigNumberVis(slice, payload) {
id="white_gradient"
from="white"
to="white"
toOpacity="0"
toOpacity={0}
/>
<LinearGradient
id="sky_gradient"
from="#3498DB"
to="#3498DB"
toOpacity="0"
toOpacity={0}
/>
<LinearGradient
id="green_gradient"
from="#2ECC71"
to="#2ECC71"
toOpacity="0"
toOpacity={0}
/>
<LinearGradient
id="red_gradient"
from="#E74C3C"
to="#E74C3C"
toOpacity="0"
toOpacity={0}
/>
<LinearGradient
id="yellow_gradient"
from="#F1C40F"
to="#F1C40F"
toOpacity="0"
toOpacity={0}
/>
<LinearGradient
id="purple_gradient"
from="#9B59B6"
to="#9B59B6"
toOpacity="0"
toOpacity={0}
/>
<LinearGradient
id="fire_gradient"
Expand Down

0 comments on commit 932ff93

Please sign in to comment.