Fix missing route (#668)

This commit is contained in:
Salih Altun
2024-08-02 16:17:18 +03:00
committed by GitHub
parent 1cca837735
commit 5791410cd9

View File

@@ -18,6 +18,7 @@ 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";
import { WorkflowRun } from "./routes/workflows/WorkflowRun";
const router = createBrowserRouter([
{
@@ -106,6 +107,10 @@ const router = createBrowserRouter([
path: "run",
element: <WorkflowRunParameters />,
},
{
path: ":workflowRunId",
element: <WorkflowRun />,
},
],
},
],