Merge pull request #2281 from automatisch/step-supports-connection

feat: Add supportsConnections flag to individual steps
This commit is contained in:
Ali BARIN
2025-01-15 12:25:19 +01:00
committed by GitHub

View File

@@ -74,7 +74,7 @@ const addStaticSubsteps = (stepType, appData, step) => {
computedStep.substeps = [];
if (appData.supportsConnections) {
if (appData.supportsConnections && step.supportsConnections !== false) {
computedStep.substeps.push(chooseConnectionStep);
}