Skip to content

Commit

Permalink
fix possible undefined method access on old version. rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
pissang committed Sep 18, 2021
1 parent a876998 commit b9ade23
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/echarts-liquidfill.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/echarts-liquidfill.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/echarts-liquidfill.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/echarts-liquidfill.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/liquidFillView.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ echarts.extendChartView({
y: newWave.y
}, seriesModel);

if (seriesModel && seriesModel.isUniversalTransitionEnabled()) {
if (seriesModel.isUniversalTransitionEnabled && seriesModel.isUniversalTransitionEnabled()) {
echarts.graphic.updateProps(waveElement, {
style: style
}, seriesModel);
Expand Down

0 comments on commit b9ade23

Please sign in to comment.