@acorex/platform 20.6.6 → 20.6.8
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.
|
@@ -812,12 +812,12 @@ class AXPColumnWidgetComponent {
|
|
|
812
812
|
this.rawValue = null;
|
|
813
813
|
this.nullText = this.options['nullText'];
|
|
814
814
|
this.nullValue = this.options['nullValue'];
|
|
815
|
-
this.value =
|
|
815
|
+
this.value = () => {
|
|
816
816
|
if (isNil(this.rawValue) && !isNil(this.nullValue)) {
|
|
817
817
|
return this.nullValue;
|
|
818
818
|
}
|
|
819
819
|
return this.rawValue;
|
|
820
|
-
}
|
|
820
|
+
};
|
|
821
821
|
}
|
|
822
822
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXPColumnWidgetComponent, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
823
823
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXPColumnWidgetComponent }); }
|