@tiledesk/tiledesk-server 2.19.14 → 2.19.15
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.
- package/CHANGELOG.md +3 -0
- package/package.json +1 -1
- package/utils/dataTableUtils.js +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/utils/dataTableUtils.js
CHANGED
|
@@ -224,7 +224,7 @@ function validateRowData(data, schema) {
|
|
|
224
224
|
const col = schema[j];
|
|
225
225
|
if (!Object.prototype.hasOwnProperty.call(data, col.name)) continue;
|
|
226
226
|
const raw = data[col.name];
|
|
227
|
-
if (raw ===
|
|
227
|
+
if (raw === undefined) continue;
|
|
228
228
|
result[col.name] = coerceValue(raw, col);
|
|
229
229
|
}
|
|
230
230
|
return result;
|