mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix: Make params panel double width for all SQL nodes (#8236)
## Summary Make params panel double width for all SQL nodes <img width="1445" alt="image" src="https://github.com/n8n-io/n8n/assets/8850410/422e7c6c-90c9-4cf0-832b-fab7679275d3"> ## Related tickets and issues https://linear.app/n8n/issue/NODE-986/make-all-sql-nodes-have-a-double-width-params-pane ## Review / Merge checklist - [ ] PR title and summary are descriptive. **Remember, the title automatically goes into the changelog. Use `(no-changelog)` otherwise.** ([conventions](https://github.com/n8n-io/n8n/blob/master/.github/pull_request_title_conventions.md)) - [ ] [Docs updated](https://github.com/n8n-io/n8n-docs) or follow-up ticket created. - [ ] Tests included. > A bug is not considered fixed, unless a test is added to prevent it from happening again. > A feature is not complete without tests.
This commit is contained in:
@@ -36,6 +36,7 @@ export class MicrosoftSql implements INodeType {
|
|||||||
},
|
},
|
||||||
inputs: ['main'],
|
inputs: ['main'],
|
||||||
outputs: ['main'],
|
outputs: ['main'],
|
||||||
|
parameterPane: 'wide',
|
||||||
credentials: [
|
credentials: [
|
||||||
{
|
{
|
||||||
name: 'microsoftSql',
|
name: 'microsoftSql',
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ export class MySql extends VersionedNodeType {
|
|||||||
group: ['input'],
|
group: ['input'],
|
||||||
defaultVersion: 2.2,
|
defaultVersion: 2.2,
|
||||||
description: 'Get, add and update data in MySQL',
|
description: 'Get, add and update data in MySQL',
|
||||||
|
parameterPane: 'wide',
|
||||||
};
|
};
|
||||||
|
|
||||||
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
|
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ export class Postgres extends VersionedNodeType {
|
|||||||
group: ['input'],
|
group: ['input'],
|
||||||
defaultVersion: 2.3,
|
defaultVersion: 2.3,
|
||||||
description: 'Get, add and update data in Postgres',
|
description: 'Get, add and update data in Postgres',
|
||||||
|
parameterPane: 'wide',
|
||||||
};
|
};
|
||||||
|
|
||||||
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
|
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ export class QuestDb implements INodeType {
|
|||||||
},
|
},
|
||||||
inputs: ['main'],
|
inputs: ['main'],
|
||||||
outputs: ['main'],
|
outputs: ['main'],
|
||||||
|
parameterPane: 'wide',
|
||||||
credentials: [
|
credentials: [
|
||||||
{
|
{
|
||||||
name: 'questDb',
|
name: 'questDb',
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ export class Snowflake implements INodeType {
|
|||||||
},
|
},
|
||||||
inputs: ['main'],
|
inputs: ['main'],
|
||||||
outputs: ['main'],
|
outputs: ['main'],
|
||||||
|
parameterPane: 'wide',
|
||||||
credentials: [
|
credentials: [
|
||||||
{
|
{
|
||||||
name: 'snowflake',
|
name: 'snowflake',
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ export class TimescaleDb implements INodeType {
|
|||||||
},
|
},
|
||||||
inputs: ['main'],
|
inputs: ['main'],
|
||||||
outputs: ['main'],
|
outputs: ['main'],
|
||||||
|
parameterPane: 'wide',
|
||||||
credentials: [
|
credentials: [
|
||||||
{
|
{
|
||||||
name: 'timescaleDb',
|
name: 'timescaleDb',
|
||||||
|
|||||||
Reference in New Issue
Block a user