mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 05:57:35 +03:00
Fix CollapsibleComment in PlaylistDetails. Closes #2992
This commit is contained in:
parent
aef49cb8d6
commit
544ae90ec1
2 changed files with 5 additions and 1 deletions
|
@ -39,6 +39,10 @@ export const CollapsibleComment = ({ record }) => {
|
||||||
setExpanded(!expanded)
|
setExpanded(!expanded)
|
||||||
}, [expanded, setExpanded])
|
}, [expanded, setExpanded])
|
||||||
|
|
||||||
|
if (lines.length === 0) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Collapse
|
<Collapse
|
||||||
collapsedHeight={'2em'}
|
collapsedHeight={'2em'}
|
||||||
|
|
|
@ -50,7 +50,6 @@ const PlaylistDetails = (props) => {
|
||||||
<Typography variant="h5" className={classes.title}>
|
<Typography variant="h5" className={classes.title}>
|
||||||
{record.name || translate('ra.page.loading')}
|
{record.name || translate('ra.page.loading')}
|
||||||
</Typography>
|
</Typography>
|
||||||
<CollapsibleComment record={record} />
|
|
||||||
<Typography component="p">
|
<Typography component="p">
|
||||||
{record.songCount ? (
|
{record.songCount ? (
|
||||||
<span>
|
<span>
|
||||||
|
@ -67,6 +66,7 @@ const PlaylistDetails = (props) => {
|
||||||
<span> </span>
|
<span> </span>
|
||||||
)}
|
)}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
<CollapsibleComment record={record} />
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue