Skip to content

Commit

Permalink
fix: style problem caused by upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
D-D-H committed Mar 6, 2024
1 parent 7e12429 commit f4be7f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/gclog/Details.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ onMounted(() => {
<el-text size="small" style="font-weight: 600" truncated>{{
gct('detail.eventType')
}}</el-text>
<el-select size="small" v-model="filter.eventType" clearable>
<el-select size="small" v-model="filter.eventType" style="width: 170px" clearable>
<el-option
v-for="option in metadata.parentEventTypes"
:key="option"
Expand All @@ -149,7 +149,7 @@ onMounted(() => {
<el-text size="small" style="font-weight: 600; margin-left: 10px" truncated
>{{ gct('gcCause') }}
</el-text>
<el-select size="small" v-model="filter.gcCause" clearable>
<el-select size="small" v-model="filter.gcCause" style="width: 170px" clearable>
<el-option
v-for="option in metadata.causes"
:key="option"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/jfr/Jfr.vue
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ onUnmounted(() => {});
<el-checkbox
v-model="toggleFilterValuesChecked"
@change="(checked) => handleToggleFilterValuesChecked(checked)"
style="margin-left: 8px; margin-right: 4px; height: 16px"
style="margin-left: 8px; margin-right: 10px; height: 16px"
/>
</div>
</template>
Expand Down

0 comments on commit f4be7f0

Please sign in to comment.