From 65fd7ca93e6761fda12a36ecee6ded16848ed629 Mon Sep 17 00:00:00 2001 From: Mike Conley Date: Tue, 21 Mar 2023 19:41:39 +0000 Subject: [PATCH] Bug 1823438 - Have Migration Wizard panel-list assume the selector button width as minimum. r=kpatenio Differential Revision: https://phabricator.services.mozilla.com/D173059 --- browser/components/migration/content/migration-wizard.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/browser/components/migration/content/migration-wizard.mjs b/browser/components/migration/content/migration-wizard.mjs index 194bcc751892d..7aa09e74135bd 100644 --- a/browser/components/migration/content/migration-wizard.mjs +++ b/browser/components/migration/content/migration-wizard.mjs @@ -266,6 +266,10 @@ export class MigrationWizard extends HTMLElement { "Could not find a under the MigrationWizard during initialization." ); } + this.#browserProfileSelectorList.toggleAttribute( + "min-width-from-anchor", + true + ); this.#browserProfileSelectorList.addEventListener("click", this); }