removed js sdk dto helpers

This commit is contained in:
Gani Georgiev
2023-08-14 21:20:49 +03:00
parent cbf1215bb1
commit 5960dc5f2d
94 changed files with 1226 additions and 1213 deletions
+2 -2
View File
@@ -162,7 +162,7 @@
<span class="txt">API Preview</span>
</button>
{#if !$activeCollection.$isView}
{#if $activeCollection.type !== "view"}
<button type="button" class="btn btn-expanded" on:click={() => recordUpsertPanel?.show()}>
<i class="ri-add-line" />
<span class="txt">New record</span>
@@ -184,7 +184,7 @@
bind:filter
bind:sort
on:select={(e) => {
$activeCollection.$isView
$activeCollection.type === "view"
? recordPreviewPanel.show(e?.detail)
: recordUpsertPanel?.show(e?.detail);
}}