We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6542c2e commit 7c67cd9Copy full SHA for 7c67cd9
src/libs/ajax/data-table-providers/EntityServiceDataTableProvider.ts
@@ -111,8 +111,8 @@ export class EntityServiceDataTableProvider implements DataTableProvider {
111
return workspace.importEntitiesFile(uploadParams.file, { deleteEmptyValues: uploadParams.deleteEmptyValues });
112
}
113
const filesize = uploadParams.file?.size || Number.MAX_SAFE_INTEGER;
114
- if (filesize < 524288) {
115
- // 512k
+ if (filesize < 10485760) {
+ // 10MB
116
return workspace.importFlexibleEntitiesFileSynchronous(uploadParams.file, {
117
deleteEmptyValues: uploadParams.deleteEmptyValues,
118
});
0 commit comments