ui: scroll wide chat template in model information dialog

Long unbreakable Jinja tokens blew out the table and dialog width;
the block now scrolls horizontally instead of stretching.

Assisted-by: pi
This commit is contained in:
Aleksander Grygier
2026-08-27 08:11:17 +02:00
committed by GitHub
parent a72d3f12c8
commit 075dd71592
@@ -254,9 +254,9 @@
<Table.Cell class="align-middle font-medium">Chat Template</Table.Cell>
<Table.Cell class="py-10">
<div class="rounded-md bg-muted p-4">
<div class="overflow-x-auto rounded-md bg-muted p-4">
<pre
class="font-mono text-xs whitespace-pre-wrap">{serverProps.chat_template}</pre>
class="font-mono text-xs whitespace-pre">{serverProps.chat_template}</pre>
</div>
</Table.Cell>
</Table.Row>