mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
⚡ Minor improvement to SFTP credentials
This commit is contained in:
parent
042028fb5f
commit
8f8603320a
|
@ -41,7 +41,6 @@ export class Sftp implements ICredentialType {
|
|||
{
|
||||
displayName: 'Private Key',
|
||||
name: 'privateKey',
|
||||
required: true,
|
||||
type: 'string' as NodePropertyTypes,
|
||||
typeOptions: {
|
||||
alwaysOpenEditWindow: true,
|
||||
|
@ -55,10 +54,9 @@ export class Sftp implements ICredentialType {
|
|||
typeOptions: {
|
||||
password: true,
|
||||
},
|
||||
required: true,
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: '',
|
||||
description: 'For an encrypted private key, this is the passphrase used to decrypt it',
|
||||
description: 'For an encrypted private key, this is the passphrase used to decrypt it.',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue