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 d1ab0b9 commit 682c8c3Copy full SHA for 682c8c3
src/property.ts
@@ -53,12 +53,14 @@ export class Property<T extends Any> {
53
54
private prevGetValue?: T;
55
56
+ private lastorigin?: string;
57
+
58
constructor(device: Device, name: string, propertyDescr: PropertySchema) {
59
this.device = device;
60
61
this.name = name;
62
- this.lastOrigin = null;
63
+ this.lastOrigin = "";
64
65
// The propertyDescr argument used to be the 'type' string, so we add an
66
// assertion here to notify anybody who has an older plugin.
0 commit comments