1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Always limit data providers to 1 row on details screens, even for external tables

This commit is contained in:
Andrew Kingston 2021-08-23 11:46:50 +01:00
parent be22834d47
commit 52d2f6741e

View file

@ -86,7 +86,7 @@ const createScreen = table => {
valueType: "Binding",
},
],
limit: table.type === "external" ? undefined : 1,
limit: 1,
paginate: false,
})