Skip to content

Commit

Permalink
playlists: fix pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
rr- committed Aug 24, 2023
1 parent 98874dd commit 21cac7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/common/PlaylistTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const PlaylistTable = ({
let columns: DataTableColumn<PlaylistItemListing>[] = [
{
name: "status",
sortKey: "status",
sortKey: "status,-last_updated",
label: "Status",
itemElement: ({ item }) =>
({
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/pages/UserPlaylistPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const UserPlaylistPageView = ({ user }: UserBasePageChildRenderProps) => {
PlaylistSearchQuery
>({
page: null,
sort: "-status",
sort: "-status,-last_updated",
});
const queryClient = useQueryClient();

Expand Down

0 comments on commit 21cac7c

Please sign in to comment.