feat: support "All" in organization's country codes (#3264)

This commit is contained in:
DacongDA
2024-10-03 22:58:09 +08:00
committed by GitHub
parent e1dea9f697
commit 468631e654
3 changed files with 9 additions and 2 deletions

View File

@ -350,6 +350,7 @@ class OrganizationEditPage extends React.Component {
}}
filterOption={(input, option) => (option?.text ?? "").toLowerCase().includes(input.toLowerCase())}
>
{Setting.getCountryCodeOption({name: i18next.t("organization:All"), code: "All", phone: 0})}
{
Setting.getCountryCodeData().map((country) => Setting.getCountryCodeOption(country))
}