Fixed: Limit titles in task name to 10 artists

(cherry picked from commit c81ae6546118e954e481894d0b3fa6e9a20359c7)

Closes #4777
This commit is contained in:
Bogdan 2024-04-25 22:59:00 +03:00
parent 8b57b33c99
commit 66c7521f4b
1 changed files with 17 additions and 1 deletions

View File

@ -6,6 +6,22 @@ import createMultiArtistsSelector from 'Store/Selectors/createMultiArtistsSelect
import translate from 'Utilities/String/translate';
import styles from './QueuedTaskRowNameCell.css';
function formatTitles(titles: string[]) {
if (!titles) {
return null;
}
if (titles.length > 11) {
return (
<span title={titles.join(', ')}>
{titles.slice(0, 10).join(', ')}, {titles.length - 10} more
</span>
);
}
return <span>{titles.join(', ')}</span>;
}
export interface QueuedTaskRowNameCellProps {
commandName: string;
body: CommandBody;
@ -32,7 +48,7 @@ export default function QueuedTaskRowNameCell(
<span className={styles.commandName}>
{commandName}
{sortedArtists.length ? (
<span> - {sortedArtists.map((a) => a.artistName).join(', ')}</span>
<span> - {formatTitles(sortedArtists.map((a) => a.artistName))}</span>
) : null}
</span>