|
|
@@ -1,7 +1,7 @@
|
|
|
h3 Connections
|
|
|
|
|
|
.list-group.list-group-flush.mt-3.mb-3
|
|
|
- ng-container(*ngFor='let group of childGroups')
|
|
|
+ ng-container(*ngFor='let group of childGroups')
|
|
|
.list-group-item.list-group-item-action.d-flex.align-items-center(
|
|
|
(click)='groupCollapsed[group.name] = !groupCollapsed[group.name]'
|
|
|
)
|
|
|
@@ -22,7 +22,17 @@ h3 Connections
|
|
|
.text-muted {{connection.host}}
|
|
|
button.btn.btn-outline-danger.ml-1((click)='$event.stopPropagation(); deleteConnection(connection)')
|
|
|
i.fas.fa-trash
|
|
|
-
|
|
|
+
|
|
|
button.btn.btn-primary((click)='createConnection()')
|
|
|
i.fas.fa-fw.fa-plus
|
|
|
span.ml-2 Add connection
|
|
|
+
|
|
|
+h3.mt-5 Options
|
|
|
+
|
|
|
+.form-line
|
|
|
+ .header
|
|
|
+ .title Warn when closing active connections
|
|
|
+ toggle(
|
|
|
+ [(ngModel)]='config.store.ssh.warnOnClose',
|
|
|
+ (ngModelChange)='config.save()',
|
|
|
+ )
|