diff --git a/frontend/src/components/nodes/nodeSidebar/NodeSidebar.tsx b/frontend/src/components/nodes/nodeSidebar/NodeSidebar.tsx index 1b4692e8..64b7df59 100644 --- a/frontend/src/components/nodes/nodeSidebar/NodeSidebar.tsx +++ b/frontend/src/components/nodes/nodeSidebar/NodeSidebar.tsx @@ -736,11 +736,7 @@ const NodeSidebar: React.FC = ({ nodeID }) => { showArrow={true} className="max-w-xs" > - +
@@ -752,15 +748,15 @@ const NodeSidebar: React.FC = ({ nodeID }) => { handleInputChange('url_variables', updatedUrlVars) }} > - None - {incomingSchemaVars.map((variable) => ( + {['', ...incomingSchemaVars].map((variable) => ( - {variable} + {variable || 'None'} ))}

- Supports both file URLs and inline data in the format: data:<mime_type>;base64,<encoded_data> + Supports both file URLs and inline data in the format: + data:<mime_type>;base64,<encoded_data>