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 b4b5ee9 commit 2deb31dCopy full SHA for 2deb31d
src/ui/Menus/PostponeMenu.ts
@@ -51,6 +51,9 @@ export class PostponeMenu extends TaskEditingMenu {
51
52
if (task[dateFieldToPostpone]?.isSame(postponedDate, 'day')) {
53
item.setChecked(true);
54
+ // Workaround solution for https://github.com/obsidian-tasks-group/obsidian-tasks/issues/2816
55
+ // Do nothing when the checked item is clicked
56
+ item.onClick(() => null);
57
}
58
59
};
0 commit comments