Commit bba294a4 authored by henry's avatar henry Committed by Pier Angelo Vendrame
Browse files

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

parent c632ffc3
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: !packagedLocales.has(code),
      canRemove: code !== Services.locale.defaultLocale,
      installed: availableLocales.has(code),
    };
  });