From fe1ea8a25daae8c5a5371533bbb946505a13e71f Mon Sep 17 00:00:00 2001 From: Johannes Millan Date: Fri, 7 Feb 2025 16:59:18 +0100 Subject: [PATCH] feat: also remember last task list mode on keyboard combo --- src/app/features/tasks/add-task-bar/add-task-bar.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/features/tasks/add-task-bar/add-task-bar.component.ts b/src/app/features/tasks/add-task-bar/add-task-bar.component.ts index 425c72513c..20f1c3999c 100644 --- a/src/app/features/tasks/add-task-bar/add-task-bar.component.ts +++ b/src/app/features/tasks/add-task-bar/add-task-bar.component.ts @@ -154,7 +154,7 @@ export class AddTaskBarComponent implements AfterViewInit, OnDestroy { this.blurred.emit(); this.activatedIssueTask$.next(null); } else if (ev.key === '1' && ev.ctrlKey) { - this.isAddToBottom.set(!this.isAddToBottom()); + this.toggleIsAddToBottom(); ev.preventDefault(); } else if (ev.key === '2' && ev.ctrlKey) { this.isSearchIssueProviders.set(!this.isSearchIssueProviders());