mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-04 21:49:33 +00:00
Refac make DownloadListItem key more unique
This commit is contained in:
@@ -318,7 +318,9 @@ const Download = () => {
|
||||
{downloadList &&
|
||||
downloadList?.map(download => {
|
||||
return (
|
||||
<Fragment key={`${download.channel_id}_${download.timestamp}`}>
|
||||
<Fragment
|
||||
key={`${download.channel_id}_${download.timestamp}_${download.youtube_id}`}
|
||||
>
|
||||
<DownloadListItem download={download} setRefresh={setRefresh} />
|
||||
</Fragment>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user