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 c6787bb commit 4183a2fCopy full SHA for 4183a2f
src/Query/Explain/Explainer.ts
@@ -54,11 +54,7 @@ export class Explainer {
54
return this.indent('No filters supplied. All tasks will match the query.\n');
55
}
56
57
- return query.filters
58
- .map((filter) => {
59
- return filter.explainFilterIndented(this.indentation);
60
- })
61
- .join('\n');
+ return query.filters.map((filter) => filter.explainFilterIndented(this.indentation)).join('\n');
62
63
64
public explainGroups(query: Query) {
0 commit comments