-
Notifications
You must be signed in to change notification settings - Fork 894
feat: manage groups from deployment settings for single-org deployments #14016
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
Changes from 3 commits
4c840c7
5346d8e
29dffc5
7999b92
01371ec
f29bae0
21ce367
9ed77d4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ import { isEveryoneGroup } from "utils/groups"; | |
import { pageTitle } from "utils/page"; | ||
|
||
export const GroupPage: FC = () => { | ||
const { organization, groupName } = useParams() as { | ||
const { organization = "default", groupName } = useParams() as { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see the constant "default" used in multiple places. We should define it in a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. personally, I really dread adding imports like that which end up being more typing that the thing you could just say directly |
||
organization: string; | ||
groupName: string; | ||
}; | ||
|
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.