summaryrefslogtreecommitdiffstatshomepage
path: root/webui/src/pages/identity/BugList.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/pages/identity/BugList.tsx')
-rw-r--r--webui/src/pages/identity/BugList.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/webui/src/pages/identity/BugList.tsx b/webui/src/pages/identity/BugList.tsx
index c7994827..fbddb0fe 100644
--- a/webui/src/pages/identity/BugList.tsx
+++ b/webui/src/pages/identity/BugList.tsx
@@ -24,14 +24,14 @@ const useStyles = makeStyles((theme) => ({
}));
type Props = {
- humanId: string;
+ id: string;
};
-function BugList({ humanId }: Props) {
+function BugList({ id }: Props) {
const classes = useStyles();
const { loading, error, data } = useGetBugsByUserQuery({
variables: {
- query: 'author:' + humanId + ' sort:creation',
+ query: 'author:' + id + ' sort:creation',
},
});