We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8716185 commit 2a83e67Copy full SHA for 2a83e67
src/api/native/workhub.ts
@@ -20,7 +20,7 @@ export class WorkhubModel extends HttpClient {
20
}
21
22
public exec(id: string, rq: ScriptPayload): Promise<{ Id: number }> {
23
- rq.Name = 'Exec: ' + rq.Name;
+ rq = { ...rq, Name: 'Exec: ' + rq.Name };
24
return this.post('/workhub/exec/' + id, rq);
25
26
0 commit comments