added view collection type

This commit is contained in:
Gani Georgiev
2023-02-18 19:33:42 +02:00
parent 0052e2ab2a
commit a07f67002f
98 changed files with 3259 additions and 829 deletions
@@ -142,10 +142,10 @@
<form id={formId} class="grid" autocomplete="off" on:submit|preventDefault={save}>
{#if !admin.isNew}
<Field class="form-field disabled" name="id" let:uniqueId>
<Field class="form-field readonly" name="id" let:uniqueId>
<label for={uniqueId}>
<i class={CommonHelper.getFieldTypeIcon("primary")} />
<span class="txt">ID</span>
<span class="txt">id</span>
</label>
<div class="form-field-addon">
<i
@@ -156,7 +156,7 @@
}}
/>
</div>
<input type="text" id={uniqueId} value={admin.id} disabled />
<input type="text" id={uniqueId} value={admin.id} readonly />
</Field>
{/if}