chore: format

This commit is contained in:
Timothy Jaeryang Baek
2025-10-26 19:33:39 -07:00
parent 54c05ac6e0
commit a70bc52c34
70 changed files with 378 additions and 1417 deletions

View File

@@ -34,18 +34,18 @@
<div class=" flex items-center gap-2 mr-3">
<div class="self-center flex items-center">
<Checkbox
state={_actions[action].is_global
? 'checked'
: _actions[action].selected
? 'checked'
: 'unchecked'}
disabled={_actions[action].is_global}
on:change={(e) => {
if (!_actions[action].is_global) {
_actions[action].selected = e.detail === 'checked';
selectedActionIds = Object.keys(_actions).filter((t) => _actions[t].selected);
}
}}
state={_actions[action].is_global
? 'checked'
: _actions[action].selected
? 'checked'
: 'unchecked'}
disabled={_actions[action].is_global}
on:change={(e) => {
if (!_actions[action].is_global) {
_actions[action].selected = e.detail === 'checked';
selectedActionIds = Object.keys(_actions).filter((t) => _actions[t].selected);
}
}}
/>
</div>