fix: 专辑页面歌名翻译被换行 (#1447)

This commit is contained in:
memorydream 2022-03-27 16:02:39 +08:00 committed by GitHub
parent b5f681631e
commit 9f890072d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -123,18 +123,18 @@ const Track = memo(
className='ml-1.5 mt-[2px] h-4 w-4 text-gray-300 dark:text-gray-500'
/>
)}
{subtitle && (
<span
title={subtitle}
className={classNames(
'ml-1',
isHighlight ? 'text-brand-500/[.8]' : 'text-gray-400'
)}
>
({subtitle})
</span>
)}
</span>
{subtitle && (
<span
title={subtitle}
className={classNames(
'ml-1',
isHighlight ? 'text-brand-500/[.8]' : 'text-gray-400'
)}
>
({subtitle})
</span>
)}
</div>
)}
</div>