Skip to content

Commit

Permalink
Update active_cursor_utils.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
alexwizp authored Aug 3, 2021
1 parent ee76dea commit 3661503
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const parseDatatable = (dataTables: Datatable[]) => {
const isDateHistogram =
Boolean(dataTables.length) &&
dataTables.every((dataTable) =>
dataTable.columns.find((c) => Boolean(c.meta.sourceParams?.appliedTimeRange))
dataTable.columns.some((c) => Boolean(c.meta.sourceParams?.appliedTimeRange))
);

const accessors = uniq(
Expand Down

0 comments on commit 3661503

Please sign in to comment.