mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
fix(swarmvisualizer): nodes are now sorted by roles then by hostname (#2885)
This commit is contained in:
parent
fb69ffa764
commit
b3c7c76be2
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@
|
|||
<rd-widget-header icon="fa-object-group" title-text="Cluster visualizer"></rd-widget-header>
|
||||
<rd-widget-body>
|
||||
<div class="visualizer_container">
|
||||
<div class="node" ng-repeat="node in visualizerData.nodes track by $index">
|
||||
<div class="node" ng-repeat="node in visualizerData.nodes | orderBy : ['Role', 'Hostname'] track by $index">
|
||||
<div class="node_info">
|
||||
<div>
|
||||
<div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue