@magic-xpa/angular 4.901.0-ang15 → 4.901.0-ang15-dev491.313

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.
@@ -1874,7 +1874,7 @@ class TaskMagicService {
1874
1874
  if (isUndefined(val))
1875
1875
  return val;
1876
1876
  else
1877
- return (val != null) ? +val : null;
1877
+ return (val != null) ? (typeof val === 'string') ? val : +val : null;
1878
1878
  default:
1879
1879
  return val;
1880
1880
  }