File tree Expand file tree Collapse file tree 5 files changed +12
-9
lines changed
frontend/src/components/threaddump Expand file tree Collapse file tree 5 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 1
1
<!--
2
- Copyright (c) 2023 Contributors to the Eclipse Foundation
2
+ Copyright (c) 2023, 2024 Contributors to the Eclipse Foundation
3
3
4
4
See the NOTICE file(s) distributed with this work for additional
5
5
information regarding copyright ownership.
@@ -157,6 +157,7 @@ onMounted(() => {
157
157
<el-table
158
158
stripe
159
159
:show-header =" false"
160
+ v-bind =" moreThanOnePage ? {height: `${40 * pageSize}px`} : {}"
160
161
:data =" tableData"
161
162
row-key =" rowKey"
162
163
lazy
Original file line number Diff line number Diff line change 1
1
<!--
2
- Copyright (c) 2023 Contributors to the Eclipse Foundation
2
+ Copyright (c) 2023, 2024 Contributors to the Eclipse Foundation
3
3
4
4
See the NOTICE file(s) distributed with this work for additional
5
5
information regarding copyright ownership.
@@ -63,7 +63,7 @@ onMounted(() => {
63
63
<el-table
64
64
stripe
65
65
:show-header =" false"
66
- :style =" moreThanOnePage ? { height: `${40 * pageSize}px` } : {}"
66
+ v-bind =" moreThanOnePage ? {height: `${40 * pageSize}px`} : {}"
67
67
:data =" tableData"
68
68
v-loading =" loading"
69
69
>
Original file line number Diff line number Diff line change 1
1
<!--
2
- Copyright (c) 2023 Contributors to the Eclipse Foundation
2
+ Copyright (c) 2023, 2024 Contributors to the Eclipse Foundation
3
3
4
4
See the NOTICE file(s) distributed with this work for additional
5
5
information regarding copyright ownership.
@@ -114,7 +114,8 @@ onMounted(() => {
114
114
<el-table
115
115
stripe
116
116
:show-header =" false"
117
- :style =" stateData[state].moreThanOnePage ? { height: `${40 * pageSize}px` } : {}"
117
+ :max-height =" `${40 * pageSize}px`"
118
+ v-bind =" stateData[state].moreThanOnePage ? {height: `${40 * pageSize}px`} : {}"
118
119
:data =" stateData[state].tableData"
119
120
v-loading =" stateData[state].loading"
120
121
>
Original file line number Diff line number Diff line change 1
1
<!--
2
- Copyright (c) 2023 Contributors to the Eclipse Foundation
2
+ Copyright (c) 2023, 2024 Contributors to the Eclipse Foundation
3
3
4
4
See the NOTICE file(s) distributed with this work for additional
5
5
information regarding copyright ownership.
@@ -127,7 +127,8 @@ onMounted(() => {
127
127
<el-table
128
128
stripe
129
129
:show-header =" false"
130
- :style =" moreThanOnePage ? { height: `${40 * pageSize}px` } : {}"
130
+ :max-height =" `${40 * pageSize}px`"
131
+ v-bind =" moreThanOnePage ? {height: `${40 * pageSize}px`} : {}"
131
132
:data =" tableData"
132
133
v-loading =" loading"
133
134
>
Original file line number Diff line number Diff line change 1
1
<!--
2
- Copyright (c) 2023 Contributors to the Eclipse Foundation
2
+ Copyright (c) 2023, 2024 Contributors to the Eclipse Foundation
3
3
4
4
See the NOTICE file(s) distributed with this work for additional
5
5
information regarding copyright ownership.
@@ -251,7 +251,7 @@ onMounted(() => {
251
251
<el-table
252
252
stripe
253
253
:show-header =" false"
254
- :style =" threadGroupMoreThanOnePage ? { height: `${40 * threadGroupPageSize}px` } : {}"
254
+ v-bind =" threadGroupMoreThanOnePage ? {height: `${40 * threadGroupPageSize}px`} : {}"
255
255
:data =" tableDataOfThreadGroupStats"
256
256
>
257
257
<el-table-column type =" expand" >
You can’t perform that action at this time.
0 commit comments