coer-elements 0.0.73 → 0.0.74

Sign up to get free protection for your applications and to get access to all the features.
@@ -1871,12 +1871,12 @@ class CoerGridExtension extends ControlValue {
1871
1871
  }
1872
1872
  case 'toLocalZone': {
1873
1873
  if (data === null)
1874
- return false;
1874
+ return true;
1875
1875
  if (typeof columnConfig.toLocalZone === 'boolean') {
1876
1876
  response = columnConfig.toLocalZone;
1877
1877
  }
1878
1878
  else if (typeof columnConfig.toLocalZone === 'function') {
1879
- response = (data === null) ? false : columnConfig.toLocalZone({ property, row, value });
1879
+ response = (data === null) ? true : columnConfig.toLocalZone({ property, row, value });
1880
1880
  }
1881
1881
  break;
1882
1882
  }