We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b43a148 commit 19e8250Copy full SHA for 19e8250
src/2n8.ts
@@ -50,11 +50,13 @@ export class TwoAndEight {
50
const initialValue = Reflect.get(this.#initialState, field)
51
if (initialValue !== undefined) {
52
Reflect.set(this, field, initialValue)
53
+ this.emitChange()
54
}
55
} else {
56
for (const key of Object.keys(this.#initialState)) {
57
const initialValue = Reflect.get(this.#initialState, key)
58
Reflect.set(this, key, initialValue)
59
60
61
62
0 commit comments