Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-boot-admin
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-boot-admin
Commits
b7aa64ee
Commit
b7aa64ee
authored
Jun 06, 2018
by
Thomas Bosch
Committed by
Johannes Edmeier
Jun 10, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix actuator path filter in http traces view while having a
server.servlet.contextPath set
parent
d3518a32
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
index.vue
...-ui/src/main/frontend/views/instances/httptrace/index.vue
+1
-1
No files found.
spring-boot-admin-server-ui/src/main/frontend/views/instances/httptrace/index.vue
View file @
b7aa64ee
...
...
@@ -164,7 +164,7 @@
if
(
this
.
instance
.
registration
.
managementUrl
.
includes
(
this
.
instance
.
registration
.
serviceUrl
))
{
const
appendix
=
this
.
instance
.
registration
.
managementUrl
.
substring
(
this
.
instance
.
registration
.
serviceUrl
.
length
);
if
(
appendix
.
length
>
0
)
{
return
`/
${
appendix
}
`
;
return
appendix
.
startsWith
(
'/'
)
?
appendix
:
`/
${
appendix
}
`
;
}
}
return
null
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment