tweak(ui): bundle tooltip styling

This commit is contained in:
psychedelicious
2024-10-24 18:09:29 +10:00
parent aafdb0a37b
commit a3deb8d30d

View File

@@ -48,7 +48,9 @@ export const StarterBundle = ({ bundleName, bundle }: { bundleName: string; bund
<Text>{t('modelManager.includesNModels', { n: bundle.length })}:</Text>
<UnorderedList>
{bundle.map((model, index) => (
<ListItem key={index}>{model.name}</ListItem>
<ListItem key={index} wordBreak="break-all">
{model.name}
</ListItem>
))}
</UnorderedList>
</Flex>