Use limit of 1 rather than 0 for readonly fields, as 0 seems to be treated as max page size

This commit is contained in:
Andrew Kingston 2025-02-25 16:50:28 +00:00
parent bf673bff71
commit 24fd3e5c86
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@
datasource, datasource,
options: { options: {
filter, filter,
limit: writable ? 100 : 0, limit: writable ? 100 : 1,
}, },
}) })
} }