Merge pull request #14098 from Budibase/fix/long-email-display

Ellipsis on long emails
This commit is contained in:
Adria Navarro 2024-07-04 15:11:12 +02:00 committed by GitHub
commit 8118a55f1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 1 deletions

View File

@ -5,7 +5,17 @@
export let row
</script>
{value}
<span class="email">
{value}
</span>
{#if row.scimInfo?.isSync}
<ActiveDirectoryInfo iconSize="XS" />
{/if}
<style>
.email {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
</style>