Merge pull request #14098 from Budibase/fix/long-email-display
Ellipsis on long emails
This commit is contained in:
commit
8118a55f1b
|
@ -5,7 +5,17 @@
|
||||||
export let row
|
export let row
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
{value}
|
<span class="email">
|
||||||
|
{value}
|
||||||
|
</span>
|
||||||
{#if row.scimInfo?.isSync}
|
{#if row.scimInfo?.isSync}
|
||||||
<ActiveDirectoryInfo iconSize="XS" />
|
<ActiveDirectoryInfo iconSize="XS" />
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.email {
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue