@xuda.io/runtime-bundle 1.0.690 → 1.0.691
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
|
@@ -3605,7 +3605,7 @@ func.datasource.execute = async function (SESSION_ID, dataSourceSession, IS_DATA
|
|
|
3605
3605
|
const fx_ret = await func.expression.get(SESSION_ID, _ds.progDataSource.dataSourceFilterModelTypeFx, dataSourceSession, 'query');
|
|
3606
3606
|
_dataSourceFilterModelType = fx_ret.result;
|
|
3607
3607
|
}
|
|
3608
|
-
if (!['query', 'index'].includes(_dataSourceFilterModelType)) {
|
|
3608
|
+
if (_dataSourceFilterModelType && !['query', 'index'].includes(_dataSourceFilterModelType)) {
|
|
3609
3609
|
return func.utils.debug_report(SESSION_ID, 'Data source', `Valid values for dataSourceFilterModelType are: "query" or "index" (${_dataSourceFilterModelType})`, 'E');
|
|
3610
3610
|
}
|
|
3611
3611
|
|
|
@@ -3606,7 +3606,7 @@ func.datasource.execute = async function (SESSION_ID, dataSourceSession, IS_DATA
|
|
|
3606
3606
|
const fx_ret = await func.expression.get(SESSION_ID, _ds.progDataSource.dataSourceFilterModelTypeFx, dataSourceSession, 'query');
|
|
3607
3607
|
_dataSourceFilterModelType = fx_ret.result;
|
|
3608
3608
|
}
|
|
3609
|
-
if (!['query', 'index'].includes(_dataSourceFilterModelType)) {
|
|
3609
|
+
if (_dataSourceFilterModelType && !['query', 'index'].includes(_dataSourceFilterModelType)) {
|
|
3610
3610
|
return func.utils.debug_report(SESSION_ID, 'Data source', `Valid values for dataSourceFilterModelType are: "query" or "index" (${_dataSourceFilterModelType})`, 'E');
|
|
3611
3611
|
}
|
|
3612
3612
|
|