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 bf5665e commit cd99622Copy full SHA for cd99622
src/Renderer/TaskLineRenderer.ts
@@ -293,8 +293,8 @@ export class TaskLineRenderer {
293
}
294
295
private async renderDescription(task: Task, span: HTMLSpanElement, isTaskInQueryFile: boolean) {
296
- const descriptionWithLinksFixed = this.adjustRelativeLinksInDescription(task, isTaskInQueryFile);
297
- let description = GlobalFilter.getInstance().removeAsWordFromDependingOnSettings(descriptionWithLinksFixed);
+ let description = this.adjustRelativeLinksInDescription(task, isTaskInQueryFile);
+ description = GlobalFilter.getInstance().removeAsWordFromDependingOnSettings(description);
298
299
const { debugSettings } = getSettings();
300
if (debugSettings.showTaskHiddenData) {
0 commit comments