Skip to content
This repository has been archived by the owner on Dec 5, 2019. It is now read-only.

Commit

Permalink
Make use of variant type labels
Browse files Browse the repository at this point in the history
  • Loading branch information
aliok committed May 31, 2018
1 parent baaf807 commit be10c88
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions app/views/_mobile-service-instance-row.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,11 @@ <h4 class="component-label section-label">Details</h4>
<div class="col-md-6" ng-if="row.extendedAnnotationsType === 'unifiedpush'">
<h4 class="component-label section-label">Variants</h4>
<dl class="dl-horizontal left">
<dt ng-repeat-start="variant in row.extendedAnnotations.variants">{{variant.type}}</dt>
<dt ng-repeat-start="variant in row.extendedAnnotations.variants">{{variant.typeLabel}}</dt>
<dd ng-repeat-end>
<a href="{{variant.url}}">{{ variant.id }}</a>
</dd>
</dl>

<h4 class="component-label section-label">Secret</h4>
<a ng-href="{{ ('ups-secret-' + row.mobileClient.metadata.name) | navigateResourceURL : 'Secret' : row.apiObject.metadata.namespace}}">View Secret</a>
</div>
</div>

Expand Down

0 comments on commit be10c88

Please sign in to comment.