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:
@@ -73,7 +73,9 @@ export class DesktopAutotypeService {
|
|||||||
|
|
||||||
async init() {
|
async init() {
|
||||||
this.autotypeEnabledUserSetting$ = this.autotypeEnabledState.state$;
|
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
|
// Currently Autotype is only supported for Windows
|
||||||
if (this.platformUtilsService.getDevice() === DeviceType.WindowsDesktop) {
|
if (this.platformUtilsService.getDevice() === DeviceType.WindowsDesktop) {
|
||||||
|
|||||||
Reference in New Issue
Block a user