Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace link icon with text, add margin #319

Merged
merged 3 commits into from
Jun 8, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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