Skip to content

Commit

Permalink
Merge pull request #38 from krumIO/fix/service-path
Browse files Browse the repository at this point in the history
Fix missing service path variables.
  • Loading branch information
krumware authored May 9, 2024
2 parents ea7f344 + 2532f39 commit 51a5e30
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/app-launcher/components/AppLauncherCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,9 @@ export default {
const endpoint = `${
isMaybeSecure(port.port, port.protocol) ? 'https' : 'http'
}:${this.app.metadata?.name}:${port.port}`;
return {
label: `${endpoint}${port.protocol === 'UDP' ? ' (UDP)' : ''}`,
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`,
};
}) ?? []
);
Expand Down

0 comments on commit 51a5e30

Please sign in to comment.