Merge branch 'more-nodes-work' of https://github.com/blessedcoolant/InvokeAI into more-nodes-work

This commit is contained in:
blessedcoolant 2023-04-23 02:53:25 +12:00
commit e29c2fb782
2 changed files with 3 additions and 3 deletions

View File

@ -42,8 +42,6 @@ const FieldHandle = (props: FieldHandleProps) => {
const { nodeId, field, isValidConnection, handleType, styles } = props; const { nodeId, field, isValidConnection, handleType, styles } = props;
const { name, title, type, description } = field; const { name, title, type, description } = field;
console.log(props);
return ( return (
<Tooltip <Tooltip
label={type} label={type}

View File

@ -119,7 +119,9 @@ const IAINodeInputs = (props: IAINodeInputsProps) => {
); );
if (index < inputSockets.length) { if (index < inputSockets.length) {
IAINodeInputsToRender.push(<Divider />); IAINodeInputsToRender.push(
<Divider key={`${inputSocket.id}.divider`} />
);
} }
IAINodeInputsToRender.push( IAINodeInputsToRender.push(