Skip to content

Commit 74061ee

Browse files
committed
fix(query): fix error: QueryUtils.execute is not a function
1 parent c2ef86d commit 74061ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/app/QueryController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export default class QueryController {
8585
let result;
8686

8787
if (window.QueryUtils) {
88-
result = QueryUtils.execute(data, query, engine);
88+
result = QueryUtils.query(data, query, engine);
8989
this.queryOutputEditor?.setValue(JSON.stringify(result, null, 2));
9090
}
9191
} catch (e) {

0 commit comments

Comments
 (0)