mirror of
https://github.com/Eugeny/tabby
synced 2024-12-13 14:52:45 +00:00
Fix: Ensure IP is selectable in SSH tab
This commit is contained in:
parent
69dd2993af
commit
64195940a1
1 changed files with 5 additions and 2 deletions
|
@ -1,7 +1,10 @@
|
|||
terminal-toolbar([tab]='this')
|
||||
i.fas.fa-xs.fa-circle.text-success.me-2(*ngIf='session && session.open')
|
||||
i.fas.fa-xs.fa-circle.text-danger.me-2(*ngIf='!session || !session.open')
|
||||
strong.me-auto {{profile.options.user}}@{{profile.options.host}}:{{profile.options.port}}
|
||||
strong.me-auto(
|
||||
style='user-select: text; cursor: text;'
|
||||
onclick='event.stopPropagation()'
|
||||
) {{profile.options.user}}@{{profile.options.host}}:{{profile.options.port}}
|
||||
|
||||
.me-2(
|
||||
ngbDropdown,
|
||||
|
@ -11,7 +14,7 @@ terminal-toolbar([tab]='this')
|
|||
)
|
||||
button.btn.btn-sm.btn-link(ngbDropdownToggle)
|
||||
i.far.fa-lightbulb.text-primary
|
||||
.bg-dark(ngbDropdownMenu)
|
||||
.bg-dark(ngbDropdownMenu)yarn
|
||||
a.d-flex.align-items-center(ngbDropdownItem, (click)='platform.openExternal("https://tabby.sh/go/cwd-detection")')
|
||||
.me-auto
|
||||
strong(translate) Working directory detection
|
||||
|
|
Loading…
Reference in a new issue