mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-01-11 20:10:25 +00:00
UI changes
This commit is contained in:
parent
569d50f25b
commit
84a308e5dc
1 changed files with 4 additions and 4 deletions
|
|
@ -1011,8 +1011,8 @@ const MetadataScreen: React.FC = () => {
|
|||
</View>
|
||||
)}
|
||||
|
||||
{/* Backdrop Gallery section - shown after movie details for movies when TMDB ID is available */}
|
||||
{shouldLoadSecondaryData && Object.keys(groupedEpisodes).length === 0 && metadata?.tmdbId && (
|
||||
{/* Backdrop Gallery section - shown after movie details for movies when TMDB ID is available and enrichment is enabled */}
|
||||
{shouldLoadSecondaryData && Object.keys(groupedEpisodes).length === 0 && metadata?.tmdbId && settings.enrichMetadataWithTMDB && (
|
||||
<View style={styles.backdropGalleryContainer}>
|
||||
<TouchableOpacity
|
||||
style={styles.backdropGalleryButton}
|
||||
|
|
@ -1137,8 +1137,8 @@ const MetadataScreen: React.FC = () => {
|
|||
</View>
|
||||
)}
|
||||
|
||||
{/* Backdrop Gallery section - shown after show details for TV shows when TMDB ID is available */}
|
||||
{shouldLoadSecondaryData && Object.keys(groupedEpisodes).length > 0 && metadata?.tmdbId && (
|
||||
{/* Backdrop Gallery section - shown after show details for TV shows when TMDB ID is available and enrichment is enabled */}
|
||||
{shouldLoadSecondaryData && Object.keys(groupedEpisodes).length > 0 && metadata?.tmdbId && settings.enrichMetadataWithTMDB && (
|
||||
<View style={styles.backdropGalleryContainer}>
|
||||
<TouchableOpacity
|
||||
style={styles.backdropGalleryButton}
|
||||
|
|
|
|||
Loading…
Reference in a new issue