We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f47f24 commit 18049f6Copy full SHA for 18049f6
ui/src/lib/utils.js
@@ -4,11 +4,11 @@ export function computeNamespace(pods, id) {
4
let res = [];
5
// if the pod is a pod, do not include its id
6
if (pods[id].type !== "DECK") {
7
- id = pods[id].parent.id;
+ id = pods[id].parent;
8
}
9
while (id) {
10
res.push(pods[id].name || id);
11
- id = pods[id].parent?.id;
12
13
return res.reverse().join("/");
14
0 commit comments