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
ac420c8c
Commit
ac420c8c
authored
May 15, 2018
by
Johannes Edmeier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix styling for thread details
parent
caf44221
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
3 deletions
+15
-3
threads-list.vue
...main/frontend/views/instances/threaddump/threads-list.vue
+15
-3
No files found.
spring-boot-admin-server-ui/src/main/frontend/views/instances/threaddump/threads-list.vue
View file @
ac420c8c
...
...
@@ -15,7 +15,7 @@
-->
<
template
>
<table
class=
"threads table is-fullwidth"
>
<table
class=
"threads table is-fullwidth
is-hoverable
"
>
<thead>
<tr>
<th
class=
"threads__thread-name"
>
Name
</th>
...
...
@@ -39,7 +39,7 @@
<tr
:key=
"`$
{thread.threadId}-detail`"
v-if="showDetails[thread.threadId]">
<td
colspan=
"2"
>
<table
class=
"t
able is-narrow
"
>
<table
class=
"t
hreads__thread-details table is-narrow is-fullwidth has-background-white-ter
"
>
<tr>
<td>
Thread Id
</td>
<td
v-text=
"thread.threadId"
/>
...
...
@@ -83,7 +83,7 @@
</tr>
<tr
v-if=
"thread.details.stackTrace.length > 0"
>
<td
colspan=
"2"
>
Stacktrace
<pre><template
<pre
class=
"threads__thread-stacktrace"
><template
v-for=
"(frame, idx) in thread.details.stackTrace"
><span
:key=
"`frame-$
{thread.threadId}-${idx}`"
v-text="`${frame.className}.${frame.methodName}(${frame.fileName}:${frame.lineNumber})`"/>
<span
...
...
@@ -201,6 +201,18 @@
white-space
:
nowrap
;
}
&
__thread-details
{
table-layout
:
fixed
;
&
td
:first-child:not
(
.threads__thread-stacktrace
)
{
width
:
20%
;
}
}
&
__thread-stacktrace
{
overflow
:
auto
;
max-height
:
300px
;
}
&
__timeline
{
width
:
auto
;
overflow
:
hidden
;
...
...
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