Skip to content

Commit

Permalink
fix: display project manager names in desired order
Browse files Browse the repository at this point in the history
  • Loading branch information
BCerki committed Mar 16, 2022
1 parent 717e637 commit 3c919df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/Project/ProjectTableRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const ProjectTableRow: React.FC<Props> = ({ project }) => {
projectStatusByProjectStatusId {
name
}
projectManagersByProjectId {
projectManagersByProjectId(orderBy: PROJECT_MANAGER_LABEL_ID_ASC) {
edges {
node {
cifUserByCifUserId {
Expand Down
2 changes: 1 addition & 1 deletion app/pages/cif/project/[project]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const pageQuery = graphql`
}
}
}
projectManagersByProjectId {
projectManagersByProjectId(orderBy: PROJECT_MANAGER_LABEL_ID_ASC) {
edges {
node {
cifUserByCifUserId {
Expand Down

0 comments on commit 3c919df

Please sign in to comment.