1
0
Fork 0
mirror of synced 2024-07-05 22:40:39 +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 88354073aa
commit 6d902616cc

View file

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