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

Commit ae29348

Browse files
committed
Fix launching task
Resolves #734
1 parent bd57aac commit ae29348

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/app/tasks/tasks.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ export class TasksService {
260260
*/
261261
launchDefinition(taskLaunchParams: TaskLaunchParams) {
262262
const params = new URLSearchParams();
263-
params.append('name', name);
263+
params.append('name', taskLaunchParams.name);
264264
if (taskLaunchParams.args) {
265265
params.append('arguments', taskLaunchParams.args);
266266
}

0 commit comments

Comments
 (0)