Skip to content

Commit

Permalink
Replace link icon with text, add margin (#319)
Browse files Browse the repository at this point in the history
* Replace link icon with text, add margin

* Replace link icon with text, add margin
  • Loading branch information
bodom0015 authored Jun 8, 2020
1 parent 711ac6e commit 842e66d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions gui/dashboard/dashboard/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,15 @@ <h4>
<!-- The Name of the Running Service and link to endpoint, if applicable -->
<td tooltip-append-to-body="true" uib-tooltip="A friendly label for this application instance">
{{ svc.service | specProperty:'label' }}
<a ng-repeat="endpt in svc.endpoints track by endpt.port" id="endpointLink"

<a class="btn btn-link btn-sm" ng-repeat="endpt in svc.endpoints track by endpt.port" id="endpointLink"
tooltip-append-to-body="true" uib-tooltip="Navigate to {{ svc.service | capitalize }} port {{ endpt.port }}"
ga-event-track="['application', 'endpoint', svc.key]"
ng-if="stack.status === 'started' && svc.status === 'ready'
&& endpt !== '' && ((stack.key | specProperty:'access') === 'external') && (endpt.protocol === 'http')" target="_blank"
ng-href="{{ endpt | externalHostPort }}"
ng-disabled="stack.status === 'stopping' && svc.status === 'ready'">
<i class="fa fa-fw fa-external-link faa-tada faa-slow animated"></i>
Open
</a>
</td>

Expand Down

0 comments on commit 842e66d

Please sign in to comment.