Skip to content

Commit

Permalink
CDAP-20917: Fix sort param
Browse files Browse the repository at this point in the history
  • Loading branch information
samdgupi committed May 7, 2024
1 parent bdc6f97 commit 2967d1d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const getNamespacePipelineListV2 = (namespace) => {
pageSize,
pageToken: getPageToken(nextPageTokens, currentPage),
sortOrder,
sortOrderOn: sortBy,
sortOn: sortBy,
filter,
}).subscribe(
(res: IPipelineListResponse) => {
Expand Down Expand Up @@ -297,7 +297,7 @@ export const getRemotePipelineListV2 = (namespace) => {
pageSize,
pageToken: getPageToken(nextPageTokens, currentPage),
sortOrder,
sortOrderOn: sortBy,
sortOn: sortBy,
filter,
}).subscribe(
(res: IPipelineListResponse) => {
Expand Down

0 comments on commit 2967d1d

Please sign in to comment.