Skip to content

Commit

Permalink
Merge pull request #75 from Jont828/colon-fix
Browse files Browse the repository at this point in the history
Fix colon display bug in CRD view
  • Loading branch information
Jont828 authored Dec 4, 2024
2 parents 42ce9a9 + c0903b2 commit 2db962b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/views/DescribeCluster.vue
Original file line number Diff line number Diff line change
Expand Up @@ -319,12 +319,12 @@ export default {
if (typeof value == "string" || typeof value == "number") {
name = key + ": " + value;
} else {
name = key;
name = key + ":"; // Add colon for when the value is an object.
children = this.formatToTreeview(value, path + "." + key);
}
result.push({
id: path + "." + key,
name: name + ":",
name: name,
children: children,
});
});
Expand Down

0 comments on commit 2db962b

Please sign in to comment.