You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lib/components/v2/projects/CreateWorkflowModal.svelte
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -103,7 +103,7 @@
103
103
.filter((t) =>t.owner);
104
104
105
105
if (customTasks.length>0) {
106
-
customTaskWarning =`Custom tasks (like the one with id=${customTasks[0].id} and source="${customTasks[0].source}") are not meant to be portable; importing this workflow may not work as expected.`;
106
+
customTaskWarning =`Custom tasks (e.g. "${customTasks[0].name}") are not meant to be portable; workflow "${workflow.name}" was imported, but it may not work as expected.`;
Copy file name to clipboardExpand all lines: src/routes/v2/projects/[projectId]/workflows/[workflowId]/+page.svelte
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -171,7 +171,7 @@
171
171
.filter((t) =>t.owner);
172
172
173
173
if (customTasks.length>0) {
174
-
customTaskWarning =`Custom tasks (like the one with id=${customTasks[0].id} and source="${customTasks[0].source}") are not meant to be portable; re-importing this workflow may not work as expected.`;
174
+
customTaskWarning =`Custom tasks (e.g. "${customTasks[0].name}") are not meant to be portable; re-importing this workflow may not work as expected.`;
0 commit comments