Skip to content

Commit

Permalink
feat: also remember last task list mode on keyboard combo
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesjo committed Feb 7, 2025
1 parent 31c9b05 commit fe1ea8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit fe1ea8a

Please sign in to comment.