Skip to content

Commit

Permalink
[PM-12426] Autofill Inline Menu Settings Not Properly Referenced in S…
Browse files Browse the repository at this point in the history
…elf-Hosted Environments (#11246)
  • Loading branch information
cagonzalezcs authored Sep 27, 2024
1 parent 08e9a69 commit 09e3468
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/browser/src/autofill/services/autofill.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,9 @@ export default class AutofillService implements AutofillServiceInterface {
FeatureFlag.InlineMenuPositioningImprovements,
);
if (!inlineMenuPositioningImprovements) {
return "bootstrap-legacy-autofill-overlay.js";
return !inlineMenuVisibility
? "bootstrap-autofill.js"
: "bootstrap-legacy-autofill-overlay.js";
}

const enableChangedPasswordPrompt = await firstValueFrom(
Expand Down

0 comments on commit 09e3468

Please sign in to comment.