mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
dont show clear clipboard options for safari
This commit is contained in:
@@ -30,6 +30,7 @@ export class OptionsComponent implements OnInit {
|
||||
dontShowCards = false;
|
||||
dontShowIdentities = false;
|
||||
showDisableContextMenu = true;
|
||||
showClearClipboard = true;
|
||||
theme: string;
|
||||
themeOptions: any[];
|
||||
defaultUriMatch = UriMatchType.Domain;
|
||||
@@ -66,7 +67,7 @@ export class OptionsComponent implements OnInit {
|
||||
}
|
||||
|
||||
async ngOnInit() {
|
||||
this.showDisableContextMenu = !this.platformUtilsService.isSafari();
|
||||
this.showDisableContextMenu = this.showClearClipboard = !this.platformUtilsService.isSafari();
|
||||
|
||||
this.enableAutoFillOnPageLoad = await this.storageService.get<boolean>(
|
||||
ConstantsService.enableAutoFillOnPageLoadKey);
|
||||
|
||||
Reference in New Issue
Block a user