Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: add template editor to /templates/:templateName route group (#14206
)

(cherry picked from commit d0feb70)
  • Loading branch information
aslilac authored and stirby committed Aug 7, 2024
commit 5bd4f1b4c00d3b866e73c516d5e08e765e59aaf3
4 changes: 4 additions & 0 deletions site/src/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,10 @@ export const router = createBrowserRouter(

{/* Pages that don't have the dashboard layout */}
<Route path="/:username/:workspace" element={<WorkspacePage />} />
<Route
path="/templates/:template/versions/:version/edit"
element={<TemplateVersionEditorPage />}
/>
<Route
path="/templates/:organization/:template/versions/:version/edit"
element={<TemplateVersionEditorPage />}
Expand Down
Loading