Skip to content

Commit fb95dbc

Browse files
author
dterefe
committed
Cleanup truncating long column values
1 parent be2e1c3 commit fb95dbc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DUUIWeb/src/lib/svelte/components/Input/RegistryDropdown.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@
389389
<span>
390390

391391
{#if !entry.meta_data[0]?.documentation}
392-
{entry.name}
392+
<span class="truncate">{entry.name}</span>
393393
{:else}
394394

395395
<Popup autoPopupWidth={true} arrow={false} position="bottom">

DUUIWeb/src/routes/processes/[oid]/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@
384384
text-xs lg:text-sm text-start"
385385
on:click={() => showDocumentModal(document)}
386386
>
387-
<p>{document.name}</p>
387+
<p class="truncate" title={document.name}>{document.name}</p>
388388
<div class="md:flex items-center justify-start md:gap-4 text-start">
389389
<p>
390390
{Math.round((Math.min(document.progress, maxProgress) / maxProgress) * 100)} %

0 commit comments

Comments
 (0)