We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ea7f344 + 2532f39 commit 51a5e30Copy full SHA for 51a5e30
pkg/app-launcher/components/AppLauncherCard.vue
@@ -38,10 +38,9 @@ export default {
38
const endpoint = `${
39
isMaybeSecure(port.port, port.protocol) ? 'https' : 'http'
40
}:${this.app.metadata?.name}:${port.port}`;
41
-
42
return {
43
label: `${endpoint}${port.protocol === 'UDP' ? ' (UDP)' : ''}`,
44
- value: `/k8s/clusters/${this.clusterId}/api/v1/namespaces/${this.app.namespace}/services/${endpoint}/proxy`,
+ value: `/k8s/clusters/${this.app.clusterId}/api/v1/namespaces/${this.app.metadata.namespace}/services/${endpoint}/proxy`,
45
};
46
}) ?? []
47
);
0 commit comments