mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-05-27 18:09:21 +02:00
Fix: long model names overflowing in delete dialog (#468)
This commit is contained in:
@@ -35,10 +35,15 @@ export async function deleteModelWithConfirm(
|
|||||||
<>
|
<>
|
||||||
the following?
|
the following?
|
||||||
<Prose className="mt-2">
|
<Prose className="mt-2">
|
||||||
<ul>
|
<ul className="space-y-1">
|
||||||
{models.map((m) => (
|
{models.map((m) => (
|
||||||
<li key={m.id}>
|
<li key={m.id}>
|
||||||
<InlineCode>{resolvedModelName(m)}</InlineCode>
|
<InlineCode
|
||||||
|
className="inline-block truncate align-bottom max-w-full"
|
||||||
|
title={resolvedModelName(m)}
|
||||||
|
>
|
||||||
|
{resolvedModelName(m)}
|
||||||
|
</InlineCode>
|
||||||
</li>
|
</li>
|
||||||
))}
|
))}
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
Reference in New Issue
Block a user