mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-23 10:45:47 +08:00
feat: add missing currencies in plan edit page (#3727)
This commit is contained in:
parent
e3d5619b25
commit
2f4180b1b6
@ -232,6 +232,15 @@ class PlanEditPage extends React.Component {
|
|||||||
[
|
[
|
||||||
{id: "USD", name: "USD"},
|
{id: "USD", name: "USD"},
|
||||||
{id: "CNY", name: "CNY"},
|
{id: "CNY", name: "CNY"},
|
||||||
|
{id: "EUR", name: "EUR"},
|
||||||
|
{id: "JPY", name: "JPY"},
|
||||||
|
{id: "GBP", name: "GBP"},
|
||||||
|
{id: "AUD", name: "AUD"},
|
||||||
|
{id: "CAD", name: "CAD"},
|
||||||
|
{id: "CHF", name: "CHF"},
|
||||||
|
{id: "HKD", name: "HKD"},
|
||||||
|
{id: "SGD", name: "SGD"},
|
||||||
|
{id: "BRL", name: "BRL"},
|
||||||
].map((item, index) => <Option key={index} value={item.id}>{item.name}</Option>)
|
].map((item, index) => <Option key={index} value={item.id}>{item.name}</Option>)
|
||||||
}
|
}
|
||||||
</Select>
|
</Select>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user