Skip to content

Commit

Permalink
fix: resolve comment on start
Browse files Browse the repository at this point in the history
  • Loading branch information
Salman-Apptware committed Nov 9, 2023
1 parent 86ceba1 commit 2786256
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion datahub-web-react/src/app/identity/group/GroupList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const GroupList = () => {
const { loading, error, data, refetch, client } = useListGroupsQuery({
variables: {
input: {
start: query && start === 0 ? null : start,
start,
count: pageSize,
query: (query?.length && query) || undefined,
},
Expand Down
2 changes: 1 addition & 1 deletion datahub-web-react/src/app/identity/user/UserList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const UserList = () => {
} = useListUsersQuery({
variables: {
input: {
start: query && start === 0 ? null : start,
start,
count: pageSize,
query: (query?.length && query) || undefined,
},
Expand Down
2 changes: 1 addition & 1 deletion datahub-web-react/src/app/ingest/secret/SecretsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const SecretsList = () => {
const { loading, error, data, client } = useListSecretsQuery({
variables: {
input: {
start: query && start === 0 ? null : start,
start,
count: pageSize,
query: (query?.length && query) || undefined,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export const IngestionSourceList = () => {
const { loading, error, data, client, refetch } = useListIngestionSourcesQuery({
variables: {
input: {
start: query && start === 0 ? null : start,
start,
count: pageSize,
query: (query?.length && query) || undefined,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export const ManagePolicies = () => {
} = useListPoliciesQuery({
variables: {
input: {
start: query && start === 0 ? null : start,
start,
count: pageSize,
query,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const ManageRoles = () => {
} = useListRolesQuery({
variables: {
input: {
start: query && start === 0 ? null : start,
start,
count: pageSize,
query,
},
Expand Down

0 comments on commit 2786256

Please sign in to comment.