Skip to content

Commit d6fea7f

Browse files
SteKoeAndreas Höhmann
authored andcommitted
fix: adjust table layout for thread dump chart to prevent width overflow (codecentric#4851)
1 parent f1ef9b0 commit d6fea7f

File tree

1 file changed

+2
-1
lines changed
  • spring-boot-admin-server-ui/src/main/frontend/views/instances/threaddump

1 file changed

+2
-1
lines changed

spring-boot-admin-server-ui/src/main/frontend/views/instances/threaddump/threads-list.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
-->
1616

1717
<template>
18-
<table class="table-auto w-full">
18+
<table class="threads">
1919
<thead>
2020
<tr>
2121
<th class="threads__thread-name" v-text="$t('term.name')" />
@@ -202,6 +202,7 @@ export default {
202202
<style lang="css">
203203
.threads {
204204
table-layout: fixed;
205+
width: 100%;
205206
}
206207
.threads__thread-name {
207208
width: 250px;

0 commit comments

Comments
 (0)