There was an error while loading. Please reload this page.
1 parent d3518a3 commit b7aa64eCopy full SHA for b7aa64e
spring-boot-admin-server-ui/src/main/frontend/views/instances/httptrace/index.vue
@@ -164,7 +164,7 @@
164
if (this.instance.registration.managementUrl.includes(this.instance.registration.serviceUrl)) {
165
const appendix = this.instance.registration.managementUrl.substring(this.instance.registration.serviceUrl.length);
166
if (appendix.length > 0) {
167
- return `/${appendix}`;
+ return appendix.startsWith('/') ? appendix : `/${appendix}`;
168
}
169
170
return null;
0 commit comments