Merge pull request #1301 from vinodkiran/BUGFIX/ui-chatflows-long-names

Bugfix: UI Fix - left align long chat flow names for consistency.
This commit is contained in:
Henry Heng
2023-11-28 16:10:45 +00:00
committed by GitHub
@@ -69,7 +69,9 @@ export const FlowListTable = ({ data, images, filterFunction, updateFlowsApi })
<Typography <Typography
sx={{ fontSize: '1.2rem', fontWeight: 500, overflowWrap: 'break-word', whiteSpace: 'pre-line' }} sx={{ fontSize: '1.2rem', fontWeight: 500, overflowWrap: 'break-word', whiteSpace: 'pre-line' }}
> >
<Button onClick={() => goToCanvas(row)}>{row.templateName || row.name}</Button> <Button onClick={() => goToCanvas(row)} sx={{ textAlign: 'left' }}>
{row.templateName || row.name}
</Button>
</Typography> </Typography>
</TableCell> </TableCell>
<TableCell key='1'> <TableCell key='1'>