1
0
Fork 0
mirror of synced 2024-06-02 18:44:54 +12:00
budibase/packages/bbui/src/Table/StringRenderer.svelte

15 lines
254 B
Svelte

<script>
export let value
</script>
<div>{typeof value === "object" ? JSON.stringify(value) : value}</div>
<style>
div {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: var(--max-cell-width);
}
</style>