Skip to content

Commit e811efd

Browse files
committed
wip
1 parent 647c20d commit e811efd

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

packages/signals/signals/src/core/signal-generators/dom-gen/mutation-observer.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -221,13 +221,6 @@ export class MutationObservable {
221221
const attributeName = m.attributeName
222222
if (!attributeName) return
223223
const newValue = element.getAttribute(attributeName)
224-
225-
// if (newValue === null) {
226-
// // Skip if attribute was removed on an input element (e.g a radio button that was unchecked)
227-
// Cutting down on noise like this didn' work because, while it cut down on noise from RadioGroup, it also broke CustomCheckbox which used data-selected
228-
// maybe there's a better way to do this with more specific logic
229-
// return
230-
// }
231224
const v: AttributeMutation = {
232225
attributeName,
233226
newValue: newValue,

0 commit comments

Comments
 (0)