@magic-xpa/angular 4.901.0-dev491.321 → 4.901.0-dev491.323

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.
@@ -1997,7 +1997,7 @@ class TaskMagicService {
1997
1997
  if (isUndefined(val))
1998
1998
  return val;
1999
1999
  else
2000
- return (val != null) ? +val : null;
2000
+ return (val != null) ? (typeof val === 'string') ? val : +val : null;
2001
2001
  default:
2002
2002
  return val;
2003
2003
  }