Skip to content

Commit

Permalink
fix: bug-120
Browse files Browse the repository at this point in the history
  • Loading branch information
omridevk committed May 12, 2022
1 parent 89aca15 commit 99b5d5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
/docs
# dependencies
/node_modules
/.angular

# IDEs and editors
/.idea
Expand Down
2 changes: 1 addition & 1 deletion apps/site/src/app/home/home.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export class HomeComponent implements OnInit, AfterViewInit {
}
);
this.secondShortcuts.push({
key: ["c + a "],
key: ["c + a"],
label: "Sequences",
description: "Sequence c + a",
allowIn: [AllowIn.Input],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export class KeyboardShortcutsService implements OnDestroy {
sequences
};
}),
tap(this.timer$)
tap((event) => this.timer$.next(event))
)
),
scan(
Expand Down

0 comments on commit 99b5d5b

Please sign in to comment.