Skip to content

Commit

Permalink
remove col for namespace in pods table for workloads details view
Browse files Browse the repository at this point in the history
  • Loading branch information
aalves08 committed Sep 25, 2024
1 parent d144398 commit 22d1f7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell/detail/workload/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export default {
},
podHeaders() {
return this.$store.getters['type-map/headersFor'](this.podSchema).filter((h) => h !== NAMESPACE_COL);
return this.$store.getters['type-map/headersFor'](this.podSchema).filter((h) => !h.name || h.name !== NAMESPACE_COL.name);
},
graphVarsWorkload() {
Expand Down

0 comments on commit 22d1f7f

Please sign in to comment.