mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 03:06:00 +00:00
14 lines
282 B
Svelte
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')}
|