Skip to content

Commit 243386d

Browse files
fix(topology): add new types for subflow expand check after relocation of core plugins
1 parent f83a692 commit 243386d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/topology/Topology.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,10 @@
282282
}
283283
284284
const expand = (expandData) => {
285-
const taskTypesWithSubflows = ["io.kestra.core.tasks.flows.Flow", "io.kestra.core.tasks.flows.Subflow", "io.kestra.core.tasks.flows.ForEachItem$ForEachItemExecutable"];
285+
const taskTypesWithSubflows = [
286+
"io.kestra.core.tasks.flows.Flow", "io.kestra.core.tasks.flows.Subflow", "io.kestra.plugin.core.flow.Subflow",
287+
"io.kestra.core.tasks.flows.ForEachItem$ForEachItemExecutable", "io.kestra.plugin.core.flow.ForEachItem$ForEachItemExecutable"
288+
];
286289
if (taskTypesWithSubflows.includes(expandData.type) && !props.expandedSubflows.includes(expandData.id)) {
287290
forwardEvent("expand-subflow", [...props.expandedSubflows, expandData.id]);
288291
return;

0 commit comments

Comments
 (0)