Skip to content

Commit cce536f

Browse files
release: fixes
- Fixed the chart refresh problem when importing from CSV #970
2 parents 00e3bc2 + 7d8e64a commit cce536f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/render-google.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var chartWrapperError = [];
4040
function renderSpecificChart(id, chart) {
4141
var render, container, series, data, table, settings, i, j, row, date, axis, property, format, formatter;
4242

43-
if ( $('#' + id).hasClass('visualizer-chart-loaded') || $('#' + id).children( ':not(.loader)' ).length > 0 ) {
43+
if ( $('#' + id).hasClass('visualizer-chart-loaded') || ( 'canvas' !== id && $('#' + id).children( ':not(.loader)' ).length > 0 ) ) {
4444
return;
4545
}
4646

0 commit comments

Comments
 (0)