Skip to content

Commit

Permalink
Merge pull request #9773 from GeminiLn/fix-issue-6467
Browse files Browse the repository at this point in the history
Fix issue 6467: IP cannot be copied in SSH tab
  • Loading branch information
Eugeny committed Jul 10, 2024
2 parents 69dd299 + b436eac commit ff49b50
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tabby-ssh/src/components/sshTab.component.pug
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit ff49b50

Please sign in to comment.