1
0
Fork 0
mirror of synced 2024-08-18 03:21:29 +12:00

Merge pull request #5815 from Budibase/bug/sev3/automation-query-limit-placeholder

Add limit placeholder for Automation queries
This commit is contained in:
melohagan 2022-05-11 12:01:17 +01:00 committed by GitHub
commit aa7aa6d685
2 changed files with 3 additions and 0 deletions

View file

@ -53,6 +53,7 @@
: { schema: {} }
$: schema = getSchemaForTable(tableId, { searchableSchema: true }).schema
$: schemaFields = Object.values(schema || {})
$: queryLimit = tableId?.includes("datasource") ? "∞" : "1000"
const onChange = Utils.sequential(async (e, key) => {
try {
@ -330,6 +331,7 @@
on:change={e => onChange(e, key)}
{bindings}
updateOnChange={false}
placeholder={value.customType === "queryLimit" ? queryLimit : ""}
/>
</div>
{/if}

View file

@ -50,6 +50,7 @@ exports.definition = {
limit: {
type: "number",
title: "Limit",
customType: "queryLimit",
},
},
required: ["tableId"],