Skip to content

Commit

Permalink
Fix another lang param
Browse files Browse the repository at this point in the history
  • Loading branch information
MGatner committed Aug 5, 2022
1 parent 2671a04 commit d2827ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controllers/Jobs.php
Expand Up @@ -111,6 +111,6 @@ public function delete(string $jobId): ResponseInterface
// Delete the job (soft)
$this->jobs->delete($jobId);

return $this->renderMessage(lang('Workflows.jobDeleted', $this->job->name));
return $this->renderMessage(lang('Workflows.jobDeleted', [$this->job->name]));
}
}

0 comments on commit d2827ea

Please sign in to comment.