Fix credentials import success message (#3038)

This commit is contained in:
Jasper Zonneveld 2022-03-25 21:40:35 +01:00 committed by GitHub
parent b90bf4576c
commit e38b5ca291
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -146,7 +146,7 @@ export class ImportCredentialsCommand extends Command {
}
private reportSuccess(total: number) {
console.info(`Successfully imported ${total} ${total === 1 ? 'workflow.' : 'workflows.'}`);
console.info(`Successfully imported ${total} ${total === 1 ? 'credential.' : 'credentials.'}`);
}
private async initOwnerCredentialRole() {