mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Merge branch 'more-nodes-work' of https://github.com/blessedcoolant/InvokeAI into more-nodes-work
This commit is contained in:
commit
e29c2fb782
@ -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}
|
||||||
|
@ -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(
|
||||||
|
Loading…
Reference in New Issue
Block a user