mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
allow bulk action on max 100 items
This commit is contained in:
parent
618a5dc6a8
commit
5f09165128
1 changed files with 2 additions and 2 deletions
|
|
@ -822,8 +822,8 @@ export const bulkActionResolver = authorized<
|
|||
},
|
||||
})
|
||||
|
||||
// the query size is limited to 1000 characters
|
||||
if (!query || query.length > 1000) {
|
||||
// the query size is limited to 4000 characters to allow for 100 items
|
||||
if (!query || query.length > 4000) {
|
||||
log.error('bulkActionResolver error', {
|
||||
error: 'QueryTooLong',
|
||||
query,
|
||||
|
|
|
|||
Loading…
Reference in a new issue