Browse Source

feat(nocodb): show error when grouped data api list is failed

pull/3563/head
Wing-Kam Wong 2 years ago
parent
commit
86fee79927
  1. 1
      packages/nocodb/src/lib/meta/api/dataApis/dataAliasApis.ts

1
packages/nocodb/src/lib/meta/api/dataApis/dataAliasApis.ts

@ -279,6 +279,7 @@ async function getGroupedDataList(model, view: View, req) {
return item;
});
} catch (e) {
console.log(e);
// show empty result instead of throwing error here
// e.g. search some text in a numeric field
}

Loading…
Cancel
Save