@flexem/fc-gui 3.0.0-alpha.58 → 3.0.0-alpha.59
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
package/CHANGELOG.md
CHANGED
|
@@ -27562,7 +27562,7 @@ class numerical_display_element_NumericalDisplayElement extends readable_element
|
|
|
27562
27562
|
const writeValue = this.dataTypeService.formatToDecimal(this.model.version, result.value, this.model.dataType);
|
|
27563
27563
|
this.writeValue = writeValue;
|
|
27564
27564
|
this.showValue = result.showValue;
|
|
27565
|
-
if (+this.displayText !== +this.showValue) {
|
|
27565
|
+
if (+this.displayText !== +this.showValue || result.variableRwType === variableRwTypeEnum.witer) {
|
|
27566
27566
|
if (this.numericalOperation || result.enableNumericalOperation || result.isNumericalOperation || result.variableRwType === variableRwTypeEnum.witer) {
|
|
27567
27567
|
this.writeValueMmodalRef.hide();
|
|
27568
27568
|
}
|