mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
🔥 Remove line breaks from param descriptions (#2473)
* 🔥 Remove line breaks from param descriptions * 🔥 Remove more line breaks * 🎨 Fix spacing for list item in tooltip * ⚡ Apply multiline with <p> tags * ⚡ Improve <code> and <a> tags * ✏️ Improve grammar and spelling * ⚡ Add missing <p> tags * ✏️ Make "multiple" phrasing consistent * ⚡ Fix unneeded quote escapes * ⚡ Encode angle brackets * ⚡ Fix typo and copy-paste artifact
This commit is contained in:
@@ -119,7 +119,7 @@ export class Postgres implements INodeType {
|
||||
default: '',
|
||||
placeholder: 'id:int,name:text,description',
|
||||
description:
|
||||
'Comma separated list of the properties which should used as columns for the new rows.<br>You can use type casting with colons (:) like id:int.',
|
||||
'Comma separated list of the properties which should used as columns for the new rows. You can use type casting with colons (:) like id:int.',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
@@ -176,7 +176,7 @@ export class Postgres implements INodeType {
|
||||
default: '',
|
||||
placeholder: 'name:text,description',
|
||||
description:
|
||||
'Comma separated list of the properties which should used as columns for rows to update.<br>You can use type casting with colons (:) like id:int.',
|
||||
'Comma separated list of the properties which should used as columns for rows to update. You can use type casting with colons (:) like id:int.',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
@@ -226,11 +226,7 @@ export class Postgres implements INodeType {
|
||||
},
|
||||
],
|
||||
default: 'multiple',
|
||||
description: [
|
||||
'The way queries should be sent to database.',
|
||||
'Can be used in conjunction with <b>Continue on Fail</b>.',
|
||||
'See the docs for more examples',
|
||||
].join('<br>'),
|
||||
description: 'The way queries should be sent to database. Can be used in conjunction with <b>Continue on Fail</b>. See <a href="https://docs.n8n.io/nodes/n8n-nodes-base.postgres/">the docs</a> for more examples',
|
||||
},
|
||||
{
|
||||
displayName: 'Query Parameters',
|
||||
|
||||
Reference in New Issue
Block a user