Files
dbgate/packages/web/src/celldata/TextCellView.svelte
2021-04-24 12:24:58 +02:00

20 lines
364 B
Svelte

<script lang="ts">
import _ from 'lodash';
export let selection;
export let wrap;
</script>
<textarea
class="flex1"
{wrap}
readonly
value={selection
.map(cell => {
const { value } = cell;
if (_.isPlainObject(value) || _.isArray(value)) return JSON.stringify(value, undefined, 2);
return cell.value;
})
.join('\n')}
/>