Skip to content

Commit

Permalink
time series pattern can be null as well
Browse files Browse the repository at this point in the history
  • Loading branch information
RamezIssac committed Dec 14, 2023
1 parent e994511 commit 8fb3e3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

function is_time_series(response, chartOptions) {
if (chartOptions.time_series_support === false) return false;
return response['metadata']['time_series_pattern'] !== ""
return response['metadata']['time_series_pattern'] == ""
}

function getTimeSeriesColumnNames(response) {
Expand Down

0 comments on commit 8fb3e3e

Please sign in to comment.