@flexem/fc-gui 3.0.0-alpha.47 → 3.0.0-alpha.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -1
- package/bundles/@flexem/fc-gui.umd.js +1 -1
- package/bundles/@flexem/fc-gui.umd.js.map +1 -1
- package/bundles/@flexem/fc-gui.umd.min.js +1 -1
- package/bundles/@flexem/fc-gui.umd.min.js.map +1 -1
- package/elements/numerical-display/numerical-display-element.js +1 -1
- package/package.json +1 -1
|
@@ -190,7 +190,6 @@ export class NumericalDisplayElement extends ReadableElement {
|
|
|
190
190
|
this.writeValue = writeValue;
|
|
191
191
|
this.showValue = result.showValue;
|
|
192
192
|
if (+this.displayText !== +this.showValue) {
|
|
193
|
-
this.variableCommunicator.write(this.writeVariableName, writeValue).subscribe();
|
|
194
193
|
if (this.numericalOperation) {
|
|
195
194
|
this.writeValueMmodalRef.hide();
|
|
196
195
|
}
|
|
@@ -202,6 +201,7 @@ export class NumericalDisplayElement extends ReadableElement {
|
|
|
202
201
|
}
|
|
203
202
|
}, 10000);
|
|
204
203
|
}
|
|
204
|
+
this.variableCommunicator.write(this.writeVariableName, writeValue).subscribe();
|
|
205
205
|
}
|
|
206
206
|
else {
|
|
207
207
|
this.writeValueMmodalRef.hide();
|