From 03d97c6b1e923afa5aa375b3651d3d7775342117 Mon Sep 17 00:00:00 2001 From: Kendall Garner <17521368+kgarner7@users.noreply.github.com> Date: Tue, 10 Sep 2024 22:37:24 -0700 Subject: [PATCH] use unique id for paginated playlist --- .../features/playlists/components/playlist-detail-content.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/features/playlists/components/playlist-detail-content.tsx b/src/renderer/features/playlists/components/playlist-detail-content.tsx index 9f51c987..24d1a916 100644 --- a/src/renderer/features/playlists/components/playlist-detail-content.tsx +++ b/src/renderer/features/playlists/components/playlist-detail-content.tsx @@ -222,7 +222,7 @@ export const PlaylistDetailContent = ({ tableRef }: PlaylistDetailContentProps) suppressLoadingOverlay suppressRowDrag columnDefs={columnDefs} - getRowId={(data) => `${data.data.id}-${data.data.pageIndex}`} + getRowId={(data) => `${data.data.uniqueId}-${data.data.pageIndex}`} rowClassRules={rowClassRules} rowData={playlistSongData} rowHeight={60}