mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
actually fix the related tab (#1484)
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
.queue-container {
|
||||
position: relative;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
height: 100%;
|
||||
|
||||
@@ -4,5 +4,9 @@ import { usePlayerSong } from '/@/renderer/store';
|
||||
export const FullScreenSimilarSongs = () => {
|
||||
const currentSong = usePlayerSong();
|
||||
|
||||
return currentSong?.id ? <SimilarSongsList fullScreen song={currentSong} /> : null;
|
||||
return currentSong?.id ? (
|
||||
<div style={{ height: '100%', width: '100%' }}>
|
||||
<SimilarSongsList fullScreen song={currentSong} />
|
||||
</div>
|
||||
) : null;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user