diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 85b026dd08..0000000000 --- a/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -scripts/resources/minio filter=lfs diff=lfs merge=lfs -text diff --git a/lerna.json b/lerna.json index 34e020d48f..b3a84c72d3 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", - "version": "3.8.4", + "version": "3.8.5", "npmClient": "yarn", "concurrency": 20, "command": { diff --git a/packages/builder/src/components/automation/SetupPanel/AutomationSchemaLayout.svelte b/packages/builder/src/components/automation/SetupPanel/AutomationSchemaLayout.svelte index 6011e2753d..762a416cf6 100644 --- a/packages/builder/src/components/automation/SetupPanel/AutomationSchemaLayout.svelte +++ b/packages/builder/src/components/automation/SetupPanel/AutomationSchemaLayout.svelte @@ -184,6 +184,8 @@ }, [SchemaFieldTypes.QUERY_PARAMS]: { comp: QueryParamSelector, + fullWidth: true, + title: "Query*", }, [SchemaFieldTypes.CODE]: { comp: ExecuteScript, @@ -281,7 +283,9 @@ } const type = getFieldType(field, block) const config = type ? SchemaTypes[type] : null - const title = getFieldLabel(key, field, requiredProperties?.includes(key)) + const title = + config?.title || + getFieldLabel(key, field, requiredProperties?.includes(key)) const value = getInputValue(inputData, key) const meta = getInputValue(inputData, "meta") diff --git a/packages/builder/src/components/automation/SetupPanel/QueryParamSelector.svelte b/packages/builder/src/components/automation/SetupPanel/QueryParamSelector.svelte index eb97f9b02f..f05d3941bd 100644 --- a/packages/builder/src/components/automation/SetupPanel/QueryParamSelector.svelte +++ b/packages/builder/src/components/automation/SetupPanel/QueryParamSelector.svelte @@ -1,9 +1,10 @@