Skip to content

Commit

Permalink
Change NameId to SystmeId for NodeGroup Node details page
Browse files Browse the repository at this point in the history
  • Loading branch information
powerkimhub committed Sep 30, 2024
1 parent fc1e16f commit 32ef8ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api-runtime/rest-runtime/admin-web/html/cluster.html
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ <h1>Cluster Management</h1>
<table id="cluster-table">
<tr>
<th class="column-num center-align">#</th>
<th class="name-column center-align">Name</th>
<th class="name-column center-align" style="text-align: center;">Name</th>
<th class="version-column center-align">Version</th>
<th class="status-column">Status</th>
<th class="access-info-column center-align">Access Info</th>
Expand Down Expand Up @@ -1646,7 +1646,7 @@ <h2>Add New NodeGroup</h2>
if (selectedNodeGroup.Nodes && selectedNodeGroup.Nodes.length > 0) {
const nodeListRow = document.createElement('tr');
const nodeList = selectedNodeGroup.Nodes.map(node =>
`<a href="javascript:void(0);" onclick="showNodeDetails('${selectedCluster.IId.NameId}', '${selectedNodeGroup.IId.NameId}', '${node.NameId}')">${node.NameId}</a>`
`<a href="javascript:void(0);" onclick="showNodeDetails('${selectedCluster.IId.NameId}', '${selectedNodeGroup.IId.NameId}', '${node.SystemId}')">${node.SystemId}</a>`
).join(', ');
nodeListRow.innerHTML = `<th>Nodes</th><td>${nodeList}</td>`;
detailsTable.appendChild(nodeListRow);
Expand Down

0 comments on commit 32ef8ff

Please sign in to comment.