Skip to content

Commit

Permalink
Show worker tags in manager
Browse files Browse the repository at this point in the history
  • Loading branch information
sergystepanov committed Nov 17, 2024
1 parent 2c50ae2 commit 68acb5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/js/workerManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const id = 'servers',
},
'id': {
caption: 'ID',
renderer: (data) => data?.in_group ? `${data.id} x ${data.replicas}` : data.id
renderer: (data) => data.tag ? data.tag : (data?.in_group ? `${data.id} x ${data.replicas}` : data.id)
},
'addr': {
caption: 'Address',
Expand Down

0 comments on commit 68acb5d

Please sign in to comment.