Browse Source

fix(nocodb): set isEmptyList for false

pull/5430/head
Wing-Kam Wong 1 year ago
parent
commit
d685c5aff4
  1. 2
      packages/nocodb/src/lib/cache/NocoCache.ts

2
packages/nocodb/src/lib/cache/NocoCache.ts vendored

@ -63,7 +63,7 @@ export default class NocoCache {
if (this.cacheDisabled)
return Promise.resolve({
list: [],
isEmptyList: true,
isEmptyList: false,
});
return this.client.getList(scope, subKeys);
}

Loading…
Cancel
Save