Compare commits

...

2 Commits

Author SHA1 Message Date
1b0792b56e Update to 1.4.1 2024-01-04 01:03:17 +08:00
eb5183ab12 Fix the remote url is undefined 2024-01-04 00:41:12 +08:00
2 changed files with 2 additions and 2 deletions

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);

View File

@ -1,6 +1,6 @@
{
"name": "dockge",
"version": "1.4.0",
"version": "1.4.1",
"type": "module",
"engines": {
"node": ">= 18.0.0 && <= 18.17.1"