mirror of
https://github.com/bitwarden/browser
synced 2026-02-18 18:33:50 +00:00
fix autofill on click behavior (#19046)
This commit is contained in:
@@ -6,8 +6,8 @@
|
||||
(onRefresh)="refreshCurrentTab()"
|
||||
[description]="(showEmptyAutofillTip$ | async) ? ('autofillSuggestionsTip' | i18n) : undefined"
|
||||
isAutofillList
|
||||
showAutofillButton
|
||||
[disableDescriptionMargin]="showEmptyAutofillTip$ | async"
|
||||
[groupByType]="groupByType()"
|
||||
[showAutofillButton]="(clickItemsToAutofillVaultView$ | async) === false"
|
||||
[primaryActionAutofill]="clickItemsToAutofillVaultView$ | async"
|
||||
></app-vault-list-items-container>
|
||||
|
||||
@@ -302,8 +302,9 @@ export class VaultListItemsContainerComponent implements AfterViewInit {
|
||||
if (this.currentUriIsBlocked()) {
|
||||
return false;
|
||||
}
|
||||
return this.isAutofillList()
|
||||
? this.simplifiedItemActionEnabled()
|
||||
|
||||
return this.simplifiedItemActionEnabled()
|
||||
? this.isAutofillList()
|
||||
: this.primaryActionAutofill();
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user