[#872] changed the schema required validator to be optional for auth collections

This commit is contained in:
Gani Georgiev
2022-11-16 15:13:04 +02:00
parent 4528f075dc
commit 6e9cf986c5
45 changed files with 1166 additions and 445 deletions
@@ -333,7 +333,10 @@
{#if collection?.isAuth}
<AuthFields bind:record {collection} />
<hr />
{#if collection?.schema?.length}
<hr />
{/if}
{/if}
{#each collection?.schema || [] as field (field.name)}
@@ -364,10 +367,6 @@
{:else if field.type === "relation"}
<RelationField {field} bind:value={record[field.name]} />
{/if}
{:else}
<div class="block txt-center txt-disabled">
<h5>No custom fields to be set</h5>
</div>
{/each}
</form>