@xuda.io/runtime-bundle 1.0.248 → 1.0.249
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/js/xuda-runtime-bundle.js +1 -1
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +1 -1
- package/js/xuda-runtime-slim.min.es.js +1 -1
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +1 -1
- package/js/xuda-worker-bundle.js +1 -1
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -7160,7 +7160,7 @@ func.datasource.add_dynamic_field_to_ds = function (
|
|
|
7160
7160
|
field_id: key,
|
|
7161
7161
|
},
|
|
7162
7162
|
props: {
|
|
7163
|
-
fieldType: val ? toType(val) : "string",
|
|
7163
|
+
fieldType: typeof (val) !== "undefined" ? toType(val) : "string",
|
|
7164
7164
|
},
|
|
7165
7165
|
value: val,
|
|
7166
7166
|
};
|
|
@@ -7161,7 +7161,7 @@ func.datasource.add_dynamic_field_to_ds = function (
|
|
|
7161
7161
|
field_id: key,
|
|
7162
7162
|
},
|
|
7163
7163
|
props: {
|
|
7164
|
-
fieldType: val ? toType(val) : "string",
|
|
7164
|
+
fieldType: typeof (val) !== "undefined" ? toType(val) : "string",
|
|
7165
7165
|
},
|
|
7166
7166
|
value: val,
|
|
7167
7167
|
};
|