fix orderBy bug introduced by newer angular

This commit is contained in:
James Strachan 2016-07-04 14:05:00 +01:00
parent 2b042e9caf
commit 3fce2dcc0b
3 changed files with 24 additions and 25 deletions

View File

@ -338,6 +338,28 @@ table.environment td {
box-shadow: 0 0 1px rgba(0, 0, 0, 0.175);
}
.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical {
margin-left: 170px;
}
.nav-pf-vertical {
width: auto;
min-width: 170px;
}
.nav-pf-vertical .list-group > .list-group-item > a {
width: auto;
}
.nav-pf-vertical > .list-group > .list-group-item > a .fa,
.nav-pf-vertical > .list-group > .list-group-item > a .glyphicon,
.nav-pf-vertical > .list-group > .list-group-item > a .pficon {
line-height: 25px;
margin-right: 3px;
}
.nav-pf-vertical > .list-group > .list-group-item > a img {
max-height: 16px;
max-width: 16px;
margin-right: 10px;
}
/* This is for the 'Overview' page with all the rows of boxes */
.service-view-rectangle {
position: relative;
@ -681,25 +703,3 @@ kubernetes-container-terminal .terminal-actions {
overflow-y: auto;
overflow-x: hidden;
}
.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical {
margin-left: 170px;
}
.nav-pf-vertical {
width: auto;
min-width: 170px;
}
.nav-pf-vertical .list-group > .list-group-item > a {
width: auto;
}
.nav-pf-vertical > .list-group > .list-group-item > a .fa,
.nav-pf-vertical > .list-group > .list-group-item > a .glyphicon,
.nav-pf-vertical > .list-group > .list-group-item > a .pficon {
line-height: 25px;
margin-right: 3px;
}
.nav-pf-vertical > .list-group > .list-group-item > a img {
max-height: 16px;
max-width: 16px;
margin-right: 10px;
}

File diff suppressed because one or more lines are too long

View File

@ -118,7 +118,7 @@
</td>
<td ng-repeat="env in environments | orderBy: 'order' | filter:filterTemplates track by $index">
<div
ng-repeat="(version, versionInfo) in envVersions[env.namespace][app.metadata.name].versions | orderBy:'version' track by $index">
ng-repeat="(version, versionInfo) in envVersions[env.namespace][app.metadata.name].versions track by $index">
<div ng-repeat="(rcname, rc) in versionInfo.replicationControllers">
<div>
<a href="{{rc.$viewLink}}" ng-show="rc.$viewLink"