We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00d0b18 commit 3c669c6Copy full SHA for 3c669c6
packages/renderer-core/src/utils/data-helper.ts
@@ -179,7 +179,7 @@ export class DataHelper {
179
const _tb_token_ = (csrfInput as any)?.value;
180
asyncDataList.forEach((req) => {
181
const { id, type, options } = req;
182
- if (!id || !type || type === 'legao') return;
+ if (!id || !type) return;
183
if (type === 'doServer') {
184
const { uri, params } = options || {};
185
if (!uri) return;
@@ -314,4 +314,4 @@ export class DataHelper {
314
}
315
316
317
-type DataSourceType = 'fetch' | 'jsonp';
+type DataSourceType = 'fetch' | 'jsonp';
0 commit comments