Skip to content

Commit

Permalink
[#959] [3.0] Chart > Chart Data 변경 Watch 정상 동작 하지 않음 (#960)
Browse files Browse the repository at this point in the history
Co-authored-by: jinhee park <jinhee@ex-em.com>
  • Loading branch information
jhee564 and jhee564 authored Dec 6, 2021
1 parent aa903f3 commit f726427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/chart/Chart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
await watch(() => props.data, (chartData) => {
const newData = getNormalizedData(chartData);
const isUpdateSeries = !isEqual(newData.series, evChart.data.series);
const isUpdateSeries = !isEqual(newData, evChart.data);
evChart.data = cloneDeep(newData);
evChart.update({
updateSeries: isUpdateSeries,
Expand Down

0 comments on commit f726427

Please sign in to comment.