|
|
@@ -73,7 +73,7 @@ export default {
|
|
|
},
|
|
|
data () {
|
|
|
return {
|
|
|
- detailComponent: 'j-thread-detail',
|
|
|
+ detailComponent: 'div',
|
|
|
detail: {},
|
|
|
showSource: false,
|
|
|
currentJVMCode: [],
|
|
|
@@ -104,9 +104,13 @@ export default {
|
|
|
this.showSource = !this.showSource
|
|
|
},
|
|
|
goNextFrame () {
|
|
|
+ this.detail = null
|
|
|
+ this.detailComponent = 'div'
|
|
|
this.$emit('onNextFrame')
|
|
|
},
|
|
|
goPreFrame () {
|
|
|
+ this.detail = null
|
|
|
+ this.detailComponent = 'div'
|
|
|
this.$emit('onPreFrame')
|
|
|
}
|
|
|
}
|
|
|
@@ -147,7 +151,7 @@ export default {
|
|
|
|
|
|
.detail {
|
|
|
grid-area: detail;
|
|
|
- height: calc(100vh - 90px);
|
|
|
+ height: calc(100vh - 150px);
|
|
|
}
|
|
|
|
|
|
.other-info {
|
|
|
@@ -159,14 +163,14 @@ export default {
|
|
|
display: grid;
|
|
|
position: relative;
|
|
|
grid-gap: 24px;
|
|
|
- grid-template-columns: 1fr 2fr 1fr;
|
|
|
+ grid-template-columns: 1.5fr 2fr 2fr;
|
|
|
grid-template-areas: 'heap info detail' 'method info detail' 'thread info detail';
|
|
|
}
|
|
|
|
|
|
.actions {
|
|
|
position: absolute;
|
|
|
right: 12px;
|
|
|
- bottom: 24px;
|
|
|
+ bottom: 16px;
|
|
|
}
|
|
|
}
|
|
|
</style>
|