mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
prevent no lyrics message fade out on fullscreen player (#1821)
This commit is contained in:
@@ -118,7 +118,7 @@ export const FullScreenPlayerQueue = () => {
|
|||||||
<FullScreenSimilarSongs />
|
<FullScreenSimilarSongs />
|
||||||
</div>
|
</div>
|
||||||
) : activeTab === 'lyrics' ? (
|
) : activeTab === 'lyrics' ? (
|
||||||
<Lyrics />
|
<Lyrics fadeOutNoLyricsMessage={false} />
|
||||||
) : activeTab === 'visualizer' && type === PlayerType.WEB && webAudio ? (
|
) : activeTab === 'visualizer' && type === PlayerType.WEB && webAudio ? (
|
||||||
<Suspense fallback={<></>}>
|
<Suspense fallback={<></>}>
|
||||||
{visualizerType === 'butterchurn' ? (
|
{visualizerType === 'butterchurn' ? (
|
||||||
|
|||||||
@@ -556,7 +556,7 @@ export const MobileFullscreenPlayer = () => {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className={styles.lyricsContent}>
|
<div className={styles.lyricsContent}>
|
||||||
<Lyrics />
|
<Lyrics fadeOutNoLyricsMessage={false} />
|
||||||
</div>
|
</div>
|
||||||
</motion.div>
|
</motion.div>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user