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 6782015 commit 6e11827Copy full SHA for 6e11827
ui/src/shared/container-service.ts
@@ -80,7 +80,7 @@ export class ContainerService {
80
.map(container => container?.project)
81
.filter((value, index, array) => array.indexOf(value) === index && value);
82
return projects.map(p => {
83
- return { project: p, containers: containers.filter(c => c.project == p) };
+ return { project: p, containers: containers.filter(container => container?.project == p) };
84
});
85
}
86
0 commit comments