Skip to content

Commit

Permalink
Get ready to add members list to org page
Browse files Browse the repository at this point in the history
Needs role types (ProjectRole vs OrgRole) unified in some way before
this will work; currently the MembersList component still has
ProjectRole hardcoded because it was copied out of the project page.
  • Loading branch information
rmunn committed May 14, 2024
1 parent f019572 commit bac2943
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions frontend/src/routes/(authenticated)/org/[org_id]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import { OrgRole } from '$lib/gql/types';
import { useNotifications } from '$lib/notify';
import { _changeOrgName } from './+page';
// import MembersList from '$lib/components/MembersList.svelte';
// TODO: Use org.description instead... once orgs *have* descriptions, that is. Or remove if we decide orgs won't have descriptions
export let description = 'Fake description since orgs don\'t currently have descriptions';
Expand Down Expand Up @@ -90,3 +91,6 @@
multiline={true}
/>
</DetailsPage>

<!-- TODO: Add members list component once I figure out how to unify ProjectRole and OrgRole types -->
<!-- <MembersList members={org.members}/> -->

0 comments on commit bac2943

Please sign in to comment.