@flexem/fc-gui 3.0.0-alpha.54 → 3.0.0-alpha.55
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 +1 -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 +4 -4
- package/bundles/@flexem/fc-gui.umd.min.js.map +1 -1
- package/modal/write-value/write-value-modal.component.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -41211,7 +41211,7 @@ let WriteValueModalComponent = class WriteValueModalComponent {
|
|
|
41211
41211
|
}
|
|
41212
41212
|
}
|
|
41213
41213
|
this.args.releasedVariableService.getVariableWithValueTransform(this.variableName).subscribe(result => {
|
|
41214
|
-
if (JSON.parse(result).Type !== 0) {
|
|
41214
|
+
if (JSON.parse(result.valueTransform).Type !== 0) {
|
|
41215
41215
|
this.isNumericalOperation = true;
|
|
41216
41216
|
}
|
|
41217
41217
|
this.onClosed({ value, showValue, enableNumericalOperation: this.enableNumericalOperation, isNumericalOperation: this.isNumericalOperation });
|