Skip to content

Commit

Permalink
🐛 Fix querybuilder search
Browse files Browse the repository at this point in the history
  • Loading branch information
volterra79 committed Dec 27, 2024
1 parent d26707e commit c0498e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/gui.js
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ export default new (class GUI extends G3WObject {

// check if data can be shown on query result content
if (last) {
(this.getService('queryresults') || this.showQueryResults(output.title || '')).setQueryResponse(data, { add: output.add });
(this.getService('queryresults') || this.showQueryResults(output.title || '')).setQueryResponse(data, { add: !!output.add });
}

// call after is set with data
Expand Down

0 comments on commit c0498e3

Please sign in to comment.