Skip to content

Commit

Permalink
release: fixes
Browse files Browse the repository at this point in the history
- Fixed the chart refresh problem when importing from CSV #970
  • Loading branch information
vytisbulkevicius authored Jan 5, 2023
2 parents 00e3bc2 + 7d8e64a commit cce536f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/render-google.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var chartWrapperError = [];
function renderSpecificChart(id, chart) {
var render, container, series, data, table, settings, i, j, row, date, axis, property, format, formatter;

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

Expand Down

0 comments on commit cce536f

Please sign in to comment.