{users.length > 0 && (
{t('common.members', {
context: 'title',
})}
{users.map((user) => (
{canEdit ? (
) : (
)}
))}
{canEdit && (
{/* eslint-disable-next-line jsx-a11y/control-has-associated-label */}
)}
)}
{labels.length > 0 && (
{t('common.labels', {
context: 'title',
})}
{labels.map((label) => (
{canEdit ? (
) : (
)}
))}
{canEdit && (
{/* eslint-disable-next-line jsx-a11y/control-has-associated-label */}
)}
)}
{dueDate && (
{t('common.dueDate', {
context: 'title',
})}
{canEdit ? (
) : (
)}
)}
{stopwatch && (
{t('common.stopwatch', {
context: 'title',
})}
{canEdit ? (
) : (
)}
{canEdit && (
// eslint-disable-next-line jsx-a11y/control-has-associated-label
)}
)}
)}
{(description || canEdit) && (