@magic-xpa/angular 4.1000.0-dev4100.91 → 4.1000.0-dev4100.92

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