fix: not show sys vars

pull/21369/head
Joel 1 year ago
parent 15840f554a
commit 6ba1b4c999

@ -74,7 +74,7 @@ const BasePanel: FC<BasePanelProps> = ({
const otherPanelWidth = useStore(s => s.otherPanelWidth) const otherPanelWidth = useStore(s => s.otherPanelWidth)
const setNodePanelWidth = useStore(s => s.setNodePanelWidth) const setNodePanelWidth = useStore(s => s.setNodePanelWidth)
const nodesWithInspectVars = useStore(s => s.nodesWithInspectVars) const nodesWithInspectVars = useStore(s => s.nodesWithInspectVars)
window.nodesWithInspectVars = nodesWithInspectVars console.log(nodesWithInspectVars)
const maxNodePanelWidth = useMemo(() => { const maxNodePanelWidth = useMemo(() => {
if (!workflowCanvasWidth) if (!workflowCanvasWidth)

@ -64,7 +64,7 @@ const Left = ({
/> />
)} )}
{/* group SYSTEM VAR */} {/* group SYSTEM VAR */}
{conversationVars.length > 0 && ( {systemVars.length > 0 && (
<Group <Group
varType={VarInInspectType.system} varType={VarInInspectType.system}
varList={systemVars} varList={systemVars}

Loading…
Cancel
Save