Fix credential formatting issues (#3134)

* 👕 Autofix creds lint issues

* 👕 Manually fix creds lint issues

* 👕 Fix indentation

* ✏️ Fix typo

* 👕 Fix indentation

* ✏️ Fix typo
This commit is contained in:
Iván Ovejero
2022-04-14 08:32:27 +02:00
committed by GitHub
parent 50868c2a95
commit ecd3bbfcd3
57 changed files with 129 additions and 147 deletions

View File

@@ -46,7 +46,7 @@ export class Kafka implements ICredentialType {
},
},
default: '',
description: 'Optional username if authenticated is required.',
description: 'Optional username if authenticated is required',
},
{
displayName: 'Password',
@@ -63,10 +63,10 @@ export class Kafka implements ICredentialType {
password: true,
},
default: '',
description: 'Optional password if authenticated is required.',
description: 'Optional password if authenticated is required',
},
{
displayName: 'SASL mechanism',
displayName: 'SASL Mechanism',
name: 'saslMechanism',
type: 'options',
displayOptions: {
@@ -78,7 +78,7 @@ export class Kafka implements ICredentialType {
},
options: [
{
name: 'plain',
name: 'Plain',
value: 'plain',
},
{
@@ -91,7 +91,7 @@ export class Kafka implements ICredentialType {
},
],
default: 'plain',
description: 'The SASL mechanism.',
description: 'The SASL mechanism',
},
];
}