1
0
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:
Jordan Aasen
2026-02-17 16:43:23 -08:00
committed by GitHub
parent e262441999
commit 24c3b8fb2b
2 changed files with 4 additions and 3 deletions

View File

@@ -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>

View File

@@ -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();
});