Change Retry Task to Rerun Task (#601)

This commit is contained in:
Salih Altun
2024-07-12 14:32:56 +03:00
committed by GitHub
parent f4edcba8e4
commit b52be1a597
2 changed files with 2 additions and 2 deletions

View File

@@ -143,7 +143,7 @@ function TaskDetails() {
)}
{taskHasTerminalState && (
<Button variant="secondary" asChild>
<Link to={`/create/retry/${task.task_id}`}>Retry Task</Link>
<Link to={`/create/retry/${task.task_id}`}>Rerun Task</Link>
</Button>
)}
</div>

View File

@@ -161,7 +161,7 @@ function TaskActions({ task }: Props) {
navigate(`/create/retry/${task.task_id}`);
}}
>
Retry Task
Rerun Task
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>