Spaces:
Paused
Paused
Bhabananda Das commited on
Commit ·
0a50d68
1
Parent(s): 14d56ee
fff
Browse files
src/components/list/RelatedList.jsx
CHANGED
|
@@ -39,7 +39,7 @@ const RelatedList = ({ videoId }) => {
|
|
| 39 |
: ""
|
| 40 |
}
|
| 41 |
thumbnail={
|
| 42 |
-
video?.snippet.thumbnails?.
|
| 43 |
video?.snippet.thumbnails?.standard?.url ||
|
| 44 |
""
|
| 45 |
}
|
|
|
|
| 39 |
: ""
|
| 40 |
}
|
| 41 |
thumbnail={
|
| 42 |
+
video?.snippet.thumbnails?.maxres?.url ||
|
| 43 |
video?.snippet.thumbnails?.standard?.url ||
|
| 44 |
""
|
| 45 |
}
|
src/components/list/SearchList.jsx
CHANGED
|
@@ -56,7 +56,7 @@ const SearchVideoList = () => {
|
|
| 56 |
channelId={video?.snippet?.channelId}
|
| 57 |
duration={"04:35"}
|
| 58 |
title={formateTitle(convertHtmlEntities(video.snippet.title))}
|
| 59 |
-
thumbnail={video.snippet.thumbnails.
|
| 60 |
avatar={""}
|
| 61 |
postTime={timeConverter(video.snippet.publishedAt)}
|
| 62 |
views={""}
|
|
|
|
| 56 |
channelId={video?.snippet?.channelId}
|
| 57 |
duration={"04:35"}
|
| 58 |
title={formateTitle(convertHtmlEntities(video.snippet.title))}
|
| 59 |
+
thumbnail={video.snippet.thumbnails.high.url}
|
| 60 |
avatar={""}
|
| 61 |
postTime={timeConverter(video.snippet.publishedAt)}
|
| 62 |
views={""}
|
src/components/list/TrendingList.jsx
CHANGED
|
@@ -112,7 +112,7 @@ const TrendingList = () => {
|
|
| 112 |
: ""
|
| 113 |
}
|
| 114 |
thumbnail={
|
| 115 |
-
video?.snippet.thumbnails?.
|
| 116 |
video?.snippet.thumbnails?.standard?.url ||
|
| 117 |
""
|
| 118 |
}
|
|
|
|
| 112 |
: ""
|
| 113 |
}
|
| 114 |
thumbnail={
|
| 115 |
+
video?.snippet.thumbnails?.maxres?.url ||
|
| 116 |
video?.snippet.thumbnails?.standard?.url ||
|
| 117 |
""
|
| 118 |
}
|