mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-09 15:05:48 +01:00
💄 Fix wrap of text for username in media server widget (#1030)
This commit is contained in:
@@ -33,7 +33,7 @@ export const TableRow = ({ session, app }: TableRowProps) => {
|
|||||||
{session.username?.at(0)?.toUpperCase()}
|
{session.username?.at(0)?.toUpperCase()}
|
||||||
</Avatar>
|
</Avatar>
|
||||||
)}
|
)}
|
||||||
<Text>{session.username}</Text>
|
<Text style={{ whiteSpace: 'nowrap' }}>{session.username}</Text>
|
||||||
</Flex>
|
</Flex>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
|||||||
Reference in New Issue
Block a user