Files
dbgate/packages/web/src/celldata/HtmlCellView.svelte
Jan Prochazka 2bc84cb80b html cell view
2022-02-03 15:23:24 +01:00

14 lines
282 B
Svelte

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