Merge "Fix Angular tabs"

This commit is contained in:
Jenkins 2017-01-19 18:33:51 +00:00 committed by Gerrit Code Review
commit 590c3f0038
1 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
<div ng-if="views.length > 1">
<tabset class="tabset-details">
<tab class="tab-details" ng-repeat="view in views" heading="{$ view.name $}">
<uib-tabset class="tabset-details">
<uib-tab class="tab-details" ng-repeat="view in views" heading="{$ view.name $}">
<ng-include src="view.template"></ng-include>
</tab>
</tabset>
</uib-tab>
</uib-tabset>
</div>
<div ng-if="views.length === 1">
<ng-include src="views[0].template"></ng-include>