tabby-web/frontend/src/components/connectionList.component.pug
Eugene Pankov 0484b4c8d7
.
2021-07-28 22:14:34 +02:00

9 lines
424 B
Plaintext

.list-group.list-group-light
.list-group-item.d-flex(*ngFor='let socket of appConnector.sockets')
fa-icon.text-success.me-2([icon]='_circleIcon', [fixedWidth]='true')
.me-auto
div {{socket.options.host}}:{{socket.options.port}}
.text-muted via {{socket.url}}
button.btn.btn-link((click)='closeSocket(socket)')
fa-icon([icon]='_closeIcon', [fixedWidth]='true')