changes
This commit is contained in:
@@ -553,11 +553,18 @@ export function SettingsModal({
|
|||||||
return (
|
return (
|
||||||
<Accordion.Item key={modelName} value={modelName}>
|
<Accordion.Item key={modelName} value={modelName}>
|
||||||
<Accordion.Control>
|
<Accordion.Control>
|
||||||
<Group justify="space-between" pr="sm" wrap="nowrap">
|
<Group
|
||||||
<Group gap="xs" wrap="nowrap">
|
justify="space-between"
|
||||||
|
pr="sm"
|
||||||
|
wrap="nowrap"
|
||||||
|
align="flex-start"
|
||||||
|
>
|
||||||
|
<div>
|
||||||
<Text fw={500} size="sm">
|
<Text fw={500} size="sm">
|
||||||
{modelName}
|
{modelName}
|
||||||
</Text>
|
</Text>
|
||||||
|
{capabilities.length > 0 && (
|
||||||
|
<Group gap="xs" mt={4}>
|
||||||
{capabilities.map((cap) => (
|
{capabilities.map((cap) => (
|
||||||
<Badge
|
<Badge
|
||||||
key={cap}
|
key={cap}
|
||||||
@@ -579,6 +586,8 @@ export function SettingsModal({
|
|||||||
</Badge>
|
</Badge>
|
||||||
))}
|
))}
|
||||||
</Group>
|
</Group>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
<Group gap="xs" wrap="nowrap">
|
<Group gap="xs" wrap="nowrap">
|
||||||
<Badge size="xs" variant="light" color="gray">
|
<Badge size="xs" variant="light" color="gray">
|
||||||
{tags.length} tags
|
{tags.length} tags
|
||||||
|
|||||||
Reference in New Issue
Block a user