Skip to content

Commit 47645c3

Browse files
committed
order by key for environment key/value pairs
1 parent 447379a commit 47645c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-admin-server-ui/app/views/apps/environment.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<col width="62%">
7272
<thead><tr><th colspan="2">{{item.key}}</th></tr></thead>
7373
<tbody>
74-
<tr ng-repeat="property in item.value | filter:searchFilter track by property.key" >
74+
<tr ng-repeat="property in item.value | orderBy:'key' | filter:searchFilter track by property.key" >
7575
<td style="word-break: break-all;" >{{ property.key }}</td>
7676
<td style="word-break: break-all;" >{{ property.value }}</td>
7777
</tr>

0 commit comments

Comments
 (0)