@kestra-io/ui-libs 0.0.24 → 0.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kestra-io/ui-libs",
3
- "version": "v0.0.24",
3
+ "version": "v0.0.26",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src",
@@ -383,7 +383,7 @@ export default class VueFlowUtils {
383
383
  collapsable: true,
384
384
  color: clusterColor,
385
385
  taskNode: cluster.cluster.taskNode,
386
- unused: nodeByUid[cluster.cluster.taskNode.uid].unused
386
+ unused: cluster.cluster.taskNode ? nodeByUid[cluster.cluster.taskNode.uid].unused : false
387
387
  },
388
388
  class: `bg-light-${clusterColor}-border rounded p-2`,
389
389
  })