Skip to content

Commit 0194fa9

Browse files
committed
Fix show more issue on nav search users search
1 parent 04579e3 commit 0194fa9

File tree

1 file changed

+2
-0
lines changed
  • community-dashboard/app/components/ItemSelectInput

1 file changed

+2
-0
lines changed

community-dashboard/app/components/ItemSelectInput/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ const USERS = gql`
3636
query UserOptions($search: String, $offset: Int!, $limit: Int!) {
3737
users(filters: { search: $search }, pagination: { limit: $limit, offset: $offset }) {
3838
items {
39+
id
3940
userId
4041
username
4142
}
@@ -50,6 +51,7 @@ const USER_GROUPS = gql`
5051
query UserGroupOptions($search: String, $offset: Int!, $limit: Int!) {
5152
userGroups(filters: { search: $search }, pagination: { limit: $limit, offset: $offset }) {
5253
items {
54+
id
5355
isArchived
5456
userGroupId
5557
name

0 commit comments

Comments
 (0)