From c9067cf8b87c82d2ef3a7f9c4dec47fcd4eaacd7 Mon Sep 17 00:00:00 2001 From: Zenghai Liang Date: Wed, 14 Oct 2020 16:57:09 +0800 Subject: [PATCH] Fix the linting issue --- terminus-ssh/src/components/sshSettingsTab.component.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/terminus-ssh/src/components/sshSettingsTab.component.ts b/terminus-ssh/src/components/sshSettingsTab.component.ts index 568d35b2..2c8e10a4 100644 --- a/terminus-ssh/src/components/sshSettingsTab.component.ts +++ b/terminus-ssh/src/components/sshSettingsTab.component.ts @@ -48,7 +48,9 @@ export class SSHSettingsTabComponent { copyConnection (connection) { const modal = this.ngbModal.open(EditConnectionModalComponent) - modal.componentInstance.connection = Object.assign({name: name + ' Copy'}, connection) + modal.componentInstance.connection = Object.assign({ + name: name + ' Copy' + }, connection) modal.result.then(result => { this.connections.push(result) this.config.store.ssh.connections = this.connections