fix: move collection and request to bottom of list (#2964)
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
mutation UpdateCollectionOrder($collectionID: ID!, $destCollID: ID!) {
|
||||
mutation UpdateCollectionOrder($collectionID: ID!, $destCollID: ID) {
|
||||
updateCollectionOrder(collectionID: $collectionID, destCollID: $destCollID)
|
||||
}
|
||||
|
||||
@@ -103,7 +103,7 @@ export const moveRESTTeamCollection = (
|
||||
|
||||
export const updateOrderRESTTeamCollection = (
|
||||
collectionID: string,
|
||||
destCollID: string
|
||||
destCollID: string | null
|
||||
) =>
|
||||
runMutation<
|
||||
UpdateCollectionOrderMutation,
|
||||
|
||||
@@ -84,7 +84,7 @@ export const moveRESTTeamRequest = (collectionID: string, requestID: string) =>
|
||||
|
||||
export const updateOrderRESTTeamRequest = (
|
||||
requestID: string,
|
||||
nextRequestID: string,
|
||||
nextRequestID: string | null,
|
||||
collectionID: string
|
||||
) =>
|
||||
runMutation<
|
||||
|
||||
Reference in New Issue
Block a user