Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit 188286e

Browse files
oodamienghillert
authored andcommitted
Task Launch: fix arguments separator
Resolves #893
1 parent 8aceb6d commit 188286e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/app/tasks/task-launch/task-launch.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ export class TaskLaunchComponent implements OnInit, OnDestroy {
127127
const taskProperties = getClean(this.form.get('params') as FormArray);
128128
const busy = this.tasksService.launchDefinition({
129129
name: name,
130-
args: taskArguments.join(','),
130+
args: taskArguments.join(' '),
131131
props: taskProperties.join(',')
132132
}).pipe(takeUntil(this.ngUnsubscribe$))
133133
.subscribe(

0 commit comments

Comments
 (0)