fix: whisper checker;fix: img read (#3813)
* fix: img read * fix: whisper checker * perf: dev doc * perf: dev doc * remove invalid code
This commit is contained in:
@@ -58,6 +58,7 @@ const RenderOutput = ({
|
||||
}
|
||||
});
|
||||
});
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
}, [copyOutputs, nodeId, inputs, llmModelList]);
|
||||
|
||||
const [editField, setEditField] = useState<FlowNodeOutputItemType>();
|
||||
@@ -154,6 +155,7 @@ const RenderOutput = ({
|
||||
(item) =>
|
||||
item.type !== FlowNodeOutputTypeEnum.dynamic && item.type !== FlowNodeOutputTypeEnum.hidden
|
||||
);
|
||||
|
||||
return (
|
||||
<>
|
||||
{renderOutputs.map((output, i) => {
|
||||
@@ -163,7 +165,7 @@ const RenderOutput = ({
|
||||
required={output.required}
|
||||
position={'relative'}
|
||||
_notLast={{
|
||||
mb: 4
|
||||
mb: i !== renderOutputs.length - 1 ? 4 : 0
|
||||
}}
|
||||
>
|
||||
<OutputLabel nodeId={nodeId} output={output} />
|
||||
|
||||
Reference in New Issue
Block a user