feat: 修复BUG

This commit is contained in:
zhang1106
2026-03-16 17:07:20 +08:00
parent 8dcbe9948b
commit e5d20820dc
26 changed files with 2363 additions and 1004 deletions
+1 -1
View File
@@ -277,7 +277,7 @@ const SystemSettings = () => {
return (
<Form.Item key={key} label={data.description || key} name={key}>
<Select>
{options.map(opt => (
{(Array.isArray(options) ? options : []).map(opt => (
<Option key={opt.value} value={opt.value}>
{opt.label}
</Option>