Skip to content

Commit 51a5e30

Browse files
authored
Merge pull request #38 from krumIO/fix/service-path
Fix missing service path variables.
2 parents ea7f344 + 2532f39 commit 51a5e30

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pkg/app-launcher/components/AppLauncherCard.vue

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,9 @@ export default {
3838
const endpoint = `${
3939
isMaybeSecure(port.port, port.protocol) ? 'https' : 'http'
4040
}:${this.app.metadata?.name}:${port.port}`;
41-
4241
return {
4342
label: `${endpoint}${port.protocol === 'UDP' ? ' (UDP)' : ''}`,
44-
value: `/k8s/clusters/${this.clusterId}/api/v1/namespaces/${this.app.namespace}/services/${endpoint}/proxy`,
43+
value: `/k8s/clusters/${this.app.clusterId}/api/v1/namespaces/${this.app.metadata.namespace}/services/${endpoint}/proxy`,
4544
};
4645
}) ?? []
4746
);

0 commit comments

Comments
 (0)