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 0d0eec1 commit 38cd47fCopy full SHA for 38cd47f
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+### Fixed
11
+
12
+- Fix reactivity systems not picking up when new properties are added
13
14
## [0.2.0-beta.8] - 2024-12-09
15
16
### Fixed
src/model.ts
@@ -55,6 +55,8 @@ class ModelBase<
55
return;
56
}
57
58
+ (this as any)[name] = null;
59
60
Object.defineProperty(this, name, {
61
get: () => this.attributes[name],
62
configurable: true,
@@ -80,6 +82,8 @@ class ModelBase<
80
82
81
83
84
85
86
87
88
get: () => this.getRelationship(name),
89
0 commit comments