@magic-xpa/angular 4.1000.0-dev4100.107 → 4.1000.0-dev4100.109
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.
@@ -1961,10 +1961,7 @@ class TaskMagicService {
|
|
1961
1961
|
return val;
|
1962
1962
|
}
|
1963
1963
|
case StorageAttribute.NUMERIC:
|
1964
|
-
|
1965
|
-
return val;
|
1966
|
-
else
|
1967
|
-
return (val != null) ? +val : null;
|
1964
|
+
return val != null ? +val : null;
|
1968
1965
|
default:
|
1969
1966
|
return val;
|
1970
1967
|
}
|