Skip to content

Commit

Permalink
Merge branch 'master' into feat/add-percent-formatter-pie-widget
Browse files Browse the repository at this point in the history
  • Loading branch information
jantolg committed Mar 5, 2024
2 parents 028a196 + 732cc12 commit 2fbb254
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Not released
- Add percentFormatter prop in PieWidgetUI, allowing to format percent values [#844](https://github.com/CartoDB/carto-react/pull/844)
- Fix TimeSeriesWidgetUI check undefined echart.getInstance().getDom() [#842](https://github.com/CartoDB/carto-react/pull/842)

## 2.3

### 2.3.12 (2024-02-19)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export default function TimeSeriesChart({
return;
}

const element = echartsInstance.getDom().parentElement;
const element = echartsInstance?.getDom()?.parentElement;

if (!element) return;

Expand Down

0 comments on commit 2fbb254

Please sign in to comment.