Browse Source

Make view UI read only and limit rows to 10

pull/4729/head
Andrew Kingston 4 years ago
parent
commit
e0df3787ca
  1. 3
      packages/builder/src/components/backend/DataTable/ViewDataTable.svelte

3
packages/builder/src/components/backend/DataTable/ViewDataTable.svelte

@ -57,7 +57,8 @@
{data}
{loading}
{type}
allowEditing={!view?.calculation}
allowEditing={false}
rowCount={10}
bind:hideAutocolumns
>
<ViewFilterButton {view} />

Loading…
Cancel
Save