Skip to content

Commit

Permalink
Fix Vue3: Several issues on Pod detail view (#11980)
Browse files Browse the repository at this point in the history
* fix spacing issue deployments restart count

* remove col for namespace in pods table for workloads details view
  • Loading branch information
aalves08 authored Sep 26, 2024
1 parent 4dda82d commit 1e32c3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion shell/components/ResourceDetail/Masthead.vue
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,8 @@ export default {
}
.live-data {
color: var(--body-text)
color: var(--body-text);
margin-left: 3px;
}
}
Expand Down
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 1e32c3e

Please sign in to comment.