Compare commits

...

1 Commits

Author SHA1 Message Date
eb5183ab12 Fix the remote url is undefined 2024-01-04 00:41:12 +08:00

View File

@ -275,7 +275,7 @@ export default defineComponent({
methods: {
parsePort(port) {
if (this.stack.endpoint) {
return parseDockerPort(port, this.stack.endpoint.hostname);
return parseDockerPort(port, this.stack.primaryHostname);
} else {
let hostname = this.$root.info.primaryHostname || location.hostname;
return parseDockerPort(port, hostname);