1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 21:33:27 +00:00

[PM-26319] Fix default ctrl-shift-b issue (#16683)

This commit is contained in:
Colton Hurst
2025-10-01 15:03:52 -04:00
committed by GitHub
parent e5ffd7f09f
commit 8cb908ef68

View File

@@ -73,7 +73,9 @@ export class DesktopAutotypeService {
async init() {
this.autotypeEnabledUserSetting$ = this.autotypeEnabledState.state$;
this.autotypeKeyboardShortcut$ = this.autotypeKeyboardShortcut.state$;
this.autotypeKeyboardShortcut$ = this.autotypeKeyboardShortcut.state$.pipe(
map((shortcut) => shortcut ?? defaultWindowsAutotypeKeyboardShortcut),
);
// Currently Autotype is only supported for Windows
if (this.platformUtilsService.getDevice() === DeviceType.WindowsDesktop) {