Skip to content

Commit 4356523

Browse files
committed
do not look into status fields to find a name/namespace
1 parent 6f0ce29 commit 4356523

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

html/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -909,7 +909,7 @@ function formatForFastTreeview (parentKey, data, arr) {
909909
let objectName = ''
910910
let objectNamespace = ''
911911
for (const key in data) {
912-
if (data[key] === null || key === 'managedFields') {
912+
if (data[key] === null || key === 'managedFields' || key === 'status') {
913913
continue
914914
}
915915
if (key.toLowerCase() === 'name') {

0 commit comments

Comments
 (0)