We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdbd96b commit c3dda9aCopy full SHA for c3dda9a
templates/partials/panel.twig
@@ -34,9 +34,9 @@
34
<div class="[&>:last-child]:border-b-0 dark:border-gray-700">
35
{% for name, value in array %}
36
<div class="border-b border-gray-200 px-4 py-1 flex flex-col text-right dark:border-gray-700 dark:text-gray-300">
37
- <div class="flex justify-between items-center">
+ <div class="flex justify-between items-center gap-2">
38
<b class="text-xs">{{ value is iterable ? value[0] : name }}</b>
39
- <span class="text-sm">{{ (value is iterable ? value[1] : value)|raw }}</span>
+ <span class="text-sm text-left truncate hover:text-clip hover:break-all hover:whitespace-normal">{{ (value is iterable ? value[1] : value)|raw }}</span>
40
</div>
41
42
{% if value[2] is not null %}
0 commit comments