mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 09:27:24 +00:00
Fix the linting issue
This commit is contained in:
parent
4ccc406768
commit
c9067cf8b8
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue