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 8338af3 commit 2f0180eCopy full SHA for 2f0180e
site/src/modules/resources/AgentDevcontainerCard.tsx
@@ -54,10 +54,7 @@ export const AgentDevcontainerCard: FC<AgentDevcontainerCardProps> = ({
54
container.ports.map((port) => {
55
const portLabel = `${port.port}/${port.network.toUpperCase()}`;
56
const hasHostBind =
57
- port.host_port !== undefined &&
58
- port.host_port !== null &&
59
- port.host_ip !== undefined &&
60
- port.host_ip !== null;
+ port.host_port !== undefined && port.host_ip !== undefined;
61
const helperText = hasHostBind
62
? `${port.host_ip}:${port.host_port}`
63
: "Not bound to host";
0 commit comments