Skip to content

Commit

Permalink
feat: add tooltip to show session & detail info (#169)
Browse files Browse the repository at this point in the history
* feat: add tooltip to show session & detail info

* chore: moved '-' character outside of details

Co-authored-by: Eric Villa <[email protected]>
  • Loading branch information
mholttech and ericvilla authored Sep 10, 2021
1 parent da46332 commit 14b5b7c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="session-card button-area {{session.type === eSessionType.azure ? 'azr' : 'aws'}} {{session.status === eSessionStatus.active ? 'active' : ''}}">
<span class="region-label {{session.type === eSessionType.azure ? 'azr' : 'aws'}}">{{session.region}}</span>
<div class="information" (click)="switchCredentials()">
<div class="information" (click)="switchCredentials()" title="{{ session | detail }}">
<b>{{session.sessionName}}</b> - {{ session | detail }}
</div>
<div class="information-profile" (click)="switchCredentials()">
Expand Down

0 comments on commit 14b5b7c

Please sign in to comment.