refactor(parameter): rename parameter_format to Flag Format and update related logic

This commit is contained in:
yxf
2026-06-12 17:12:10 +08:00
committed by jialin
parent 04e1e1e566
commit 778ea36a9d
8 changed files with 35 additions and 36 deletions
+7 -10
View File
@@ -151,27 +151,24 @@ const BasicForm = () => {
</Form.Item>
<Form.Item<FormData>
name="parameter_format"
initialValue="auto"
rules={[{ required: false }]}
>
<SealSelect
label={intl.formatMessage({ id: 'backend.form.parameterFormat' })}
allowClear
label={intl.formatMessage({ id: 'backend.form.flagFormat' })}
description={intl.formatMessage({
id: 'backend.form.flagFormat.tips'
})}
options={[
{
label: intl.formatMessage({
id: 'backend.form.parameterFormat.default'
}),
value: 'auto'
},
{
label: intl.formatMessage({
id: 'backend.form.parameterFormat.space'
id: 'backend.form.flagFormat.space'
}),
value: 'space'
},
{
label: intl.formatMessage({
id: 'backend.form.parameterFormat.equal'
id: 'backend.form.flagFormat.equal'
}),
value: 'equal'
}