소스 검색

properly clear jump host from settings (fixes #2675)

Eugene Pankov 5 년 전
부모
커밋
d221f8e561
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      terminus-ssh/src/components/editConnectionModal.component.pug

+ 2 - 2
terminus-ssh/src/components/editConnectionModal.component.pug

@@ -74,8 +74,8 @@
                     .header
                         .title Jump host
                     select.form-control([(ngModel)]='connection.jumpHost')
-                        option([value]='null') None
-                        option([value]='x.name', *ngFor='let x of config.store.ssh.connections') {{x.name}}
+                        option([ngValue]='null') None
+                        option([ngValue]='x.name', *ngFor='let x of config.store.ssh.connections') {{x.name}}
 
                 .form-line
                     .header