Implement retry task (#600)

This commit is contained in:
Kerem Yilmaz
2024-07-12 04:22:28 -07:00
committed by GitHub
parent ea1039277f
commit f4edcba8e4
5 changed files with 77 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ import { WorkflowsPageLayout } from "./routes/workflows/WorkflowsPageLayout";
import { Workflows } from "./routes/workflows/Workflows";
import { WorkflowPage } from "./routes/workflows/WorkflowPage";
import { WorkflowRunParameters } from "./routes/workflows/WorkflowRunParameters";
import { RetryTask } from "./routes/tasks/create/retry/RetryTask";
const router = createBrowserRouter([
{
@@ -79,6 +80,10 @@ const router = createBrowserRouter([
path: ":template",
element: <CreateNewTaskFormPage />,
},
{
path: "retry/:taskId",
element: <RetryTask />,
},
],
},
{