fix: fix WeCom provider method

This commit is contained in:
Gucheng Wang 2023-04-07 01:10:46 +08:00
parent b99a0c3ca2
commit 4ad21e7781

View File

@ -352,7 +352,7 @@ class ProviderEditPage extends React.Component {
[
{id: "Normal", name: i18next.t("provider:Normal")},
{id: "Silent", name: i18next.t("provider:Silent")},
].map((method, index) => <Option key={index} value={method.name}>{method.name}</Option>)
].map((method, index) => <Option key={index} value={method.id}>{method.name}</Option>)
}
</Select>
</Col>