diff --git a/src/popup/settings/options.component.html b/src/popup/settings/options.component.html index 66a8e1c20c..239a17ad5a 100644 --- a/src/popup/settings/options.component.html +++ b/src/popup/settings/options.component.html @@ -36,7 +36,7 @@ -
+
diff --git a/src/popup/settings/options.component.ts b/src/popup/settings/options.component.ts index cef4b6aca8..072d04bc35 100644 --- a/src/popup/settings/options.component.ts +++ b/src/popup/settings/options.component.ts @@ -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( ConstantsService.enableAutoFillOnPageLoadKey);