Merge branch 'master' into revert-12519-revert-12427-feature/add-buttongroup-to-formblock

This commit is contained in:
Michael Drury 2023-12-07 16:04:39 +00:00 committed by GitHub
commit 9a0a21dae2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -49,7 +49,15 @@
<div class="field-label">{item.label || item.field}</div>
</div>
<div class="list-item-right">
<Toggle on:change={onToggle(item)} text="" value={item.active} thin />
<Toggle
on:click={e => {
e.stopPropagation()
}}
on:change={onToggle(item)}
text=""
value={item.active}
thin
/>
</div>
</div>