Merge pull request #14738 from Budibase/cheeks-fixes

Allow empty queries when searching tables
This commit is contained in:
Andrew Kingston 2024-10-09 08:57:19 +01:00 committed by GitHub
commit 62fd5348e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ export const buildTableEndpoints = API => ({
sortType, sortType,
paginate, paginate,
}) => { }) => {
if (!tableId || !query) { if (!tableId) {
return { return {
rows: [], rows: [],
} }