1
0
Fork 0
mirror of synced 2024-09-14 08:18:31 +12:00
budibase/packages/bbui/src/Table/StringRenderer.svelte
2021-06-15 19:57:41 +01:00

13 lines
209 B
Svelte

<script>
export let value
</script>
<div>{typeof value === "object" ? JSON.stringify(value) : value}</div>
<style>
div {
overflow: hidden;
text-overflow: ellipsis;
width: 150px;
}
</style>