@magic-xpa/angular 4.1100.0-dev4110.57 → 4.1100.0-dev4110.59

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.
@@ -1919,7 +1919,7 @@ class TaskMagicService {
1919
1919
  if (isUndefined(val))
1920
1920
  return val;
1921
1921
  else
1922
- return (val != null) ? +val : null;
1922
+ return (val != null) ? (typeof val === 'string') ? val : +val : null;
1923
1923
  default:
1924
1924
  return val;
1925
1925
  }