Skip to content

fix: patch known issues in 2.14.1 #14207

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 7, 2024
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