We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de8465e commit 46196a4Copy full SHA for 46196a4
src/Renderer/HtmlQueryResultsRenderer.ts
@@ -125,7 +125,7 @@ export class HtmlQueryResultsRenderer {
125
this.getters.query().debug(`[render] Render called: plugin state: ${state}; searching ${tasks.length} tasks`);
126
127
if (this.getters.query().queryLayoutOptions.explainQuery) {
128
- this.createExplanation();
+ this.renderExplanation();
129
}
130
131
const queryResult = this.getters.query().applyQueryToTasks(tasks);
@@ -160,7 +160,7 @@ export class HtmlQueryResultsRenderer {
160
161
162
// Use the 'explain' instruction to enable this
163
- private createExplanation() {
+ private renderExplanation() {
164
const explanationAsString = explainResults(
165
this.getters.source(),
166
GlobalFilter.getInstance(),
0 commit comments