Skip to content

Commit 7867666

Browse files
fix: allow datatable to render when query is local
1 parent 4b7ac14 commit 7867666

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src2/query/components/QueryDataTable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ function onFilterChange(filters: Record<string, string>) {
167167

168168
<template>
169169
<DataTable
170-
v-if="props.query.isloaded"
170+
v-if="props.query.isloaded || props.query.islocal"
171171
:loading="props.query.executing && !isFiltering"
172172
:filtering="props.query.executing && isFiltering"
173173
:columns="columns"

0 commit comments

Comments
 (0)