Add back in Grid to backend UI
This commit is contained in:
parent
2ab41f8a98
commit
41d43eb479
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { fade } from "svelte/transition"
|
import { fade } from "svelte/transition"
|
||||||
import { goto, params } from "@roxi/routify"
|
import { goto, params } from "@roxi/routify"
|
||||||
// import AgGrid from "@budibase/svelte-ag-grid"
|
import AgGrid from "@budibase/svelte-ag-grid"
|
||||||
|
|
||||||
import api from "builderStore/api"
|
import api from "builderStore/api"
|
||||||
import { notifier } from "builderStore/store/notifications"
|
import { notifier } from "builderStore/store/notifications"
|
||||||
|
@ -165,13 +165,13 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="grid-wrapper">
|
<div class="grid-wrapper">
|
||||||
{#key columnDefs.length}
|
{#key columnDefs.length}
|
||||||
<!-- <AgGrid-->
|
<AgGrid
|
||||||
<!-- {theme}-->
|
{theme}
|
||||||
<!-- {options}-->
|
{options}
|
||||||
<!-- {data}-->
|
{data}
|
||||||
<!-- {columnDefs}-->
|
{columnDefs}
|
||||||
<!-- {loading}-->
|
{loading}
|
||||||
<!-- on:select={({ detail }) => (selectedRows = detail)} />-->
|
on:select={({ detail }) => (selectedRows = detail)} />
|
||||||
{/key}
|
{/key}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue