Skip to content

Commit

Permalink
Fix remote ip not showing up in single candidate page (#386)
Browse files Browse the repository at this point in the history
* Inspect remote IP

* fix: Add missing remoteIp field to single getCandidate gql request
  • Loading branch information
skanderm authored Apr 3, 2024
1 parent 0eb84b8 commit 22a74c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ui/src/graphql/generated/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1235,6 +1235,7 @@ export type CandidateQuery = {
playerOffset: number;
timestamp: Date;
visible?: boolean | null;
sourceIp?: string | null;
}>;
} | null;
};
Expand Down Expand Up @@ -1949,6 +1950,7 @@ export const CandidateDocument = `
playerOffset
timestamp
visible
sourceIp
}
}
}
Expand Down
1 change: 1 addition & 0 deletions ui/src/graphql/queries/getCandidate.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ query candidate($id: ID!) {
playerOffset
timestamp
visible
sourceIp
}
}
}

0 comments on commit 22a74c9

Please sign in to comment.