Allow empty queries when searching tables

This commit is contained in:
Andrew Kingston 2024-10-09 08:22:54 +01:00
parent ad7fd46767
commit 0c53272187
No known key found for this signature in database
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: [],
} }