From d0a597634db6335ccfefdc18a4ed16ea747b6acb Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Sun, 24 Jan 2021 13:08:07 +0100 Subject: [PATCH] ssh: fixed clearing jump host in connection settings --- terminus-ssh/src/components/editConnectionModal.component.pug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminus-ssh/src/components/editConnectionModal.component.pug b/terminus-ssh/src/components/editConnectionModal.component.pug index c0f9cc83..a74fea91 100644 --- a/terminus-ssh/src/components/editConnectionModal.component.pug +++ b/terminus-ssh/src/components/editConnectionModal.component.pug @@ -103,7 +103,7 @@ .header .title Jump host select.form-control([(ngModel)]='connection.jumpHost') - option([ngValue]='null') None + option(value='') None option([ngValue]='x.name', *ngFor='let x of config.store.ssh.connections') {{x.name}} .form-line