1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00

Fixing minor issue with auto-column toggles.

This commit is contained in:
mike12345567 2021-02-16 16:52:30 +00:00
parent 1c66a6f2e2
commit 3d012eafb9

View file

@ -104,13 +104,21 @@
<Label extraSmall grey>Auto Columns</Label> <Label extraSmall grey>Auto Columns</Label>
<div class="toggles"> <div class="toggles">
<div class="toggle-1"> <div class="toggle-1">
<Toggle text="Created by" bind:checked={autoColumns.createdBy} /> <Toggle
<Toggle text="Created at" bind:checked={autoColumns.createdAt} /> text="Created by"
<Toggle text="Auto ID" bind:checked={autoColumns.autoID} /> bind:checked={autoColumns.createdBy.enabled} />
<Toggle
text="Created at"
bind:checked={autoColumns.createdAt.enabled} />
<Toggle text="Auto ID" bind:checked={autoColumns.autoID.enabled} />
</div> </div>
<div class="toggle-2"> <div class="toggle-2">
<Toggle text="Updated by" bind:checked={autoColumns.updatedBy} /> <Toggle
<Toggle text="Updated at" bind:checked={autoColumns.updatedAt} /> text="Updated by"
bind:checked={autoColumns.updatedBy.enabled} />
<Toggle
text="Updated at"
bind:checked={autoColumns.updatedAt.enabled} />
</div> </div>
</div> </div>
</div> </div>