mirror of
https://github.com/yattee/yattee.git
synced 2024-12-13 05:40:32 +05:30
Hide thumbnail in playlist if not available
This commit is contained in:
parent
b8f693e213
commit
fb22fb762c
@ -136,9 +136,11 @@ struct ChannelPlaylistView: View {
|
||||
}
|
||||
} label: {
|
||||
HStack(spacing: 12) {
|
||||
ThumbnailView(url: store.item?.thumbnailURL ?? playlist?.thumbnailURL)
|
||||
.frame(width: 60, height: 30)
|
||||
.clipShape(RoundedRectangle(cornerRadius: 2))
|
||||
if let url = store.item?.thumbnailURL ?? playlist?.thumbnailURL {
|
||||
ThumbnailView(url: url)
|
||||
.frame(width: 60, height: 30)
|
||||
.clipShape(RoundedRectangle(cornerRadius: 2))
|
||||
}
|
||||
|
||||
Text(label)
|
||||
.font(.headline)
|
||||
|
Loading…
Reference in New Issue
Block a user