We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c24f65e commit a531d7cCopy full SHA for a531d7c
1 file changed
frontend/src/pages/DataCleansing/Create/components/OperatorOrchestration.tsx
@@ -185,10 +185,10 @@ const OperatorFlow: React.FC<OperatorFlowProps> = ({
185
{/* 参数状态指示 */}
186
{Object.values(operator.configs).some(
187
(param: any) =>
188
- (param.type === "input" && !param.value) ||
+ (param.type === "input" && !param.defaultValue) ||
189
(param.type === "checkbox" &&
190
- Array.isArray(param.value) &&
191
- param.value.length === 0)
+ Array.isArray(param.defaultValue) &&
+ param.defaultValue.length === 0)
192
) && <Tag color="red">待配置</Tag>}
193
{/* 操作按钮 */}
194
<span
0 commit comments