Skip to content

Commit

Permalink
rename node info fields
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenghaoz committed Dec 7, 2024
1 parent 1137ff5 commit 797828a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/views/Cluster.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@
<thead class="bg-light">
<tr>
<th scope="col" class="border-0">Type</th>
<th scope="col" class="border-0">Name</th>
<th scope="col" class="border-0">Port</th>
<th scope="col" class="border-0">Hostname</th>
<th scope="col" class="border-0">UUID</th>
<th scope="col" class="border-0">Version</th>
</tr>
</thead>
<tbody>
<tr v-for="(node, idx) in nodes" :key="idx" >
<td>{{ node.Type }}</td>
<td>{{ node.Name }}</td>
<td>{{ node.IP }}:{{ node.HttpPort }}</td>
<td>{{ node.BinaryVersion }}</td>
<td>{{ node.Hostname }}</td>
<td>{{ node.UUID }}</td>
<td>{{ node.Version }}</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit 797828a

Please sign in to comment.