Skip to content

Commit

Permalink
Merge pull request #1416 from Jeon-Jinhyeok/adminweb-enhancement
Browse files Browse the repository at this point in the history
AdminWeb: Enhancement a Zone Info for Disk and Subnet
  • Loading branch information
powerkimhub authored Jan 9, 2025
2 parents c52300b + 1e821f3 commit a059a8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api-runtime/rest-runtime/admin-web/html/disk.html
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ <h2>System ID (Managed by CSP)</h2>
data.ZoneList.forEach(zone => {
const option = document.createElement('option');
option.value = zone.Name;
option.textContent = `${zone.DisplayName} (${zone.Status})`;
option.textContent = `${zone.Name} (${zone.DisplayName})`;

if (zone.Name === defaultZone) {
option.selected = true;
Expand Down
2 changes: 1 addition & 1 deletion api-runtime/rest-runtime/admin-web/html/vpc-subnet.html
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,7 @@ <h2>System ID (Managed by CSP)</h2>
data.ZoneList.forEach(zone => {
const option = document.createElement('option');
option.value = zone.Name;
option.textContent = `${zone.DisplayName} (${zone.Status})`;
option.textContent = `${zone.Name} (${zone.DisplayName}) (${zone.Status})`;

if (zone.Name === defaultZone) {
option.selected = true;
Expand Down

0 comments on commit a059a8d

Please sign in to comment.