Always limit data providers to 1 row on details screens, even for external tables
This commit is contained in:
parent
be22834d47
commit
52d2f6741e
|
@ -86,7 +86,7 @@ const createScreen = table => {
|
|||
valueType: "Binding",
|
||||
},
|
||||
],
|
||||
limit: table.type === "external" ? undefined : 1,
|
||||
limit: 1,
|
||||
paginate: false,
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue