Add HTML title to the load CTA of the arrangements table

This commit is contained in:
Manuel Bustillo 2025-09-21 19:42:47 +02:00
parent 702bb52d72
commit b40d50d9c1
No known key found for this signature in database
GPG Key ID: A74BD9E346A80DDC

View File

@ -53,7 +53,7 @@ export default function ArrangementsTable({ onArrangementSelected }: { onArrange
{arrangement.discomfort} {arrangement.discomfort}
</td> </td>
<td> <td>
<ArrowsPointingOutIcon data-arrangement-id={arrangement.id} onClick={() => arrangementClicked(arrangement)} className='size-6 cursor-pointer' /> <ArrowsPointingOutIcon data-arrangement-id={arrangement.id} onClick={() => arrangementClicked(arrangement)} className='size-6 cursor-pointer' title="Load" />
</td> </td>
</tr> </tr>
)} )}