Skip to content

Commit

Permalink
fix ds and wb
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip-Carneiro committed Nov 19, 2024
1 parent 53061c2 commit 39501d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/resultsPanelProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ export class KdbResultsViewProvider implements WebviewViewProvider {
rowData = this.updatedExtractRowData(results);
columnDefs = this.updatedExtractColumnDefs(results);
} else {
results = isInsights ? results.data : results;
results = isInsights ? (results.data ?? results) : results;
const queryResult = isInsights ? results.rows : results;
if (Array.isArray(queryResult[0])) {
if (typeof queryResult[0][0] === "object") {
Expand Down

0 comments on commit 39501d7

Please sign in to comment.