Verified Commit 48691732 authored by Pier Angelo Vendrame's avatar Pier Angelo Vendrame 🎃
Browse files

fixup! Bug 41966: Allow removing locales from the locale alternatives list.

Revert "Bug 41966: Allow removing locales from the locale alternatives list."

This reverts commit bba294a4.
parent abe44d42
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -349,7 +349,7 @@ async function getLocaleDisplayInfo(localeCodes) {
      id: "locale-" + code,
      label: localeNames[i],
      value: code,
      canRemove: code !== Services.locale.defaultLocale,
      canRemove: !packagedLocales.has(code),
      installed: availableLocales.has(code),
    };
  });