Fix
This commit is contained in:
@@ -79,7 +79,7 @@
|
||||
for (let i = 0; i < serializedGraph.nodes.length; i++) {
|
||||
let serializedNode = serializedGraph.nodes[i];
|
||||
let frontendWidgetStates = frontendState[serializedNode.id];
|
||||
if (frontendWidgetStates) {
|
||||
if (frontendWidgetStates && serializedNode.widgets_values) {
|
||||
for (let j = 0; j < serializedNode.widgets_values.length; j++) {
|
||||
let frontendWidgetState = frontendWidgetStates[j];
|
||||
|
||||
|
||||
@@ -46,7 +46,7 @@
|
||||
|
||||
onDestroy(unsubscribe);
|
||||
|
||||
$: if ($queueState.runningNodeId) {
|
||||
$: if ($queueState) {
|
||||
for (let dragItem of dragItems) {
|
||||
dragItem.isNodeExecuting = $queueState.runningNodeId === dragItem.node.id;
|
||||
}
|
||||
|
||||
@@ -51,6 +51,10 @@
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
#modalImage {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.modalControls {
|
||||
display: flex;
|
||||
gap: 1em;
|
||||
|
||||
Reference in New Issue
Block a user