Skip to content

Commit

Permalink
Merge pull request #6689 from zxy994/fix-6406
Browse files Browse the repository at this point in the history
6406: Ensure data type list is sorted on flow details popup
  • Loading branch information
davidwatkins73 authored Aug 2, 2023
2 parents ed1e82e + 9d954e1 commit 83c0311
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ <h4>
<strong>Data Types</strong>
<div ng-if="$ctrl.selected.types.length > 0" class="wsatp-data-types">
<ul class="list-inline">
<li ng-repeat='type in $ctrl.selected.types'
<li ng-repeat="type in $ctrl.selected.types | orderBy:'name'"
style="padding-bottom: 2px">
<div style="display: inline-block; height: 1em; width: 1em; border:1px solid #ccc; border-radius: 2px;"
ng-style="{'background-color': $ctrl.flowClassificationsByCode[type.rating].color}">
Expand All @@ -173,7 +173,7 @@ <h4>
<hr>
<strong>Tags</strong>
<ul class="waltz-keyword-list small">
<li ng-repeat="tag in $ctrl.selected.tags"
<li ng-repeat="tag in $ctrl.selected.tags | orderBy:'name'"
class="wkl-keyword"
style="padding-bottom: 2px">
<span ng-bind="tag.name"></span>
Expand Down

0 comments on commit 83c0311

Please sign in to comment.