fix: Revert change that hid the SSH private key (no-changelog) (#6158)

This commit is contained in:
Adam Charnock 2023-05-04 16:11:29 +01:00 committed by GitHub
parent 45dc985af7
commit d381578926
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,6 @@ export class SshPrivateKey implements ICredentialType {
type: 'string',
typeOptions: {
rows: 4,
password: true,
},
default: '',
},
@ -45,6 +44,7 @@ export class SshPrivateKey implements ICredentialType {
type: 'string',
default: '',
description: 'Passphase used to create the key, if no passphase was used leave empty',
typeOptions: { password: true },
},
];
}