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:
parent
bf673bff71
commit
24fd3e5c86
|
@ -135,7 +135,7 @@
|
|||
datasource,
|
||||
options: {
|
||||
filter,
|
||||
limit: writable ? 100 : 0,
|
||||
limit: writable ? 100 : 1,
|
||||
},
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue