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