From 32ef8ff401fe972bae79b5d77398eef55b58426a Mon Sep 17 00:00:00 2001
From: powerkimhub <powerkim@etri.re.kr>
Date: Mon, 30 Sep 2024 15:56:47 +0900
Subject: [PATCH] Change NameId to SystmeId for NodeGroup Node details page

---
 api-runtime/rest-runtime/admin-web/html/cluster.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/api-runtime/rest-runtime/admin-web/html/cluster.html b/api-runtime/rest-runtime/admin-web/html/cluster.html
index 639210d65..7dde8478f 100644
--- a/api-runtime/rest-runtime/admin-web/html/cluster.html
+++ b/api-runtime/rest-runtime/admin-web/html/cluster.html
@@ -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>
@@ -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);