8000 fix: only show editable orgs on deployment page by code-asher · Pull Request #14193 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

fix: only show editable orgs on deployment page #14193

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 14 commits into from
Aug 9, 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
Next Next commit
No need for extra routes with a bit of ?
  • Loading branch information
code-asher committed Aug 8, 2024
commit 02e7e47b70eaac8a25f3e0cb4fbde2cca9154853
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,7 @@ jest.spyOn(console, "error").mockImplementation(() => {});
const renderRootPage = async () => {
renderWithManagementSettingsLayout(<OrganizationSettingsPage />, {
route: "/organizations",
path: "/organizations",
extraRoutes: [
{
path: "/organizations/:organization",
element: <OrganizationSettingsPage />,
},
],
path: "/organizations/:organization?",
});
await waitForLoaderToBeRemoved();
};
Expand Down
Loading
0