Skip to content
Snippets Groups Projects
Commit c9f3fa1d authored by Alexandra's avatar Alexandra Committed by Alexandra
Browse files

feat: prefix path instead of suffix for hosts

parent 41b538ea
Branches
Tags
No related merge requests found
FROM registry.e-biz.fr/deadlock-public/theia:1.201
FROM theia:1.22.1
USER root
......
......@@ -7,7 +7,7 @@
* "3000":"HXW3fnKwUULrfKS1-web",
* "8080":"HXW3fnKwUULrfKS1-angular"
* },
* "host":"persist.dev.deadlock.io",
* "host":"dev.deadlock.io",
* "token":"e75da487-9576-4427-be2d-8da4059adc7d",
* "giteaHost":"deadlock.minikube",
* "giteaSshPort":32000,
......
......@@ -123,7 +123,7 @@ export default class BriefingView extends WebviewBase {
if (userConfig.getHost() === 'localhost') {
adresses += `<li>${key} binded on <a href="http://${userConfig.getHost()}:${path}">${path}</a></li>`;
} else {
adresses += `<li>${key} binded on <a href="https://${userConfig.getHost()}/${path}/">${path}</a></li>`;
adresses += `<li>${key} binded on <a href="https://${path}.${userConfig.getHost()}">${path}</a></li>`;
}
}
}
......
......@@ -2,7 +2,7 @@
set -e
VERSION=0.21.0
VERSION=0.20.0
NAME="vscode-java-pack"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment