Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
D-D-H committed Mar 16, 2024
1 parent dce6428 commit 63f424d
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
SPDX-License-Identifier: EPL-2.0
-->
<script setup lang="ts">
import {elementLocale, t} from '@/i18n/i18n';
import { elementLocale, t } from '@/i18n/i18n';
import Header from '@/components/layouts/Header.vue';
import Side from '@/components/layouts/Side.vue';
import Main from '@/components/layouts/Main.vue';
import LoginForm from '@/components/forms/LoginForm.vue';
import axios from 'axios';
import {useEnv} from '@/stores/env';
import {ElLoading} from 'element-plus';
import { useEnv } from '@/stores/env';
import { ElLoading } from 'element-plus';

const env = useEnv();
const error = ref(false);
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/threaddump/CallSiteTree.vue
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ onMounted(() => {
<el-table
stripe
:show-header="false"
v-bind="moreThanOnePage ? {height: `${40 * pageSize}px`} : {}"
v-bind="moreThanOnePage ? { height: `${40 * pageSize}px` } : {}"
:data="tableData"
row-key="rowKey"
lazy
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/threaddump/Monitor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ onMounted(() => {
<el-table
stripe
:show-header="false"
v-bind="moreThanOnePage ? {height: `${40 * pageSize}px`} : {}"
v-bind="moreThanOnePage ? { height: `${40 * pageSize}px` } : {}"
:data="tableData"
v-loading="loading"
>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/threaddump/MonitorThread.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ onMounted(() => {
stripe
:show-header="false"
:max-height="`${40 * pageSize}px`"
v-bind="stateData[state].moreThanOnePage ? {height: `${40 * pageSize}px`} : {}"
v-bind="stateData[state].moreThanOnePage ? { height: `${40 * pageSize}px` } : {}"
:data="stateData[state].tableData"
v-loading="stateData[state].loading"
>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/threaddump/Thread.vue
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ onMounted(() => {
stripe
:show-header="false"
:max-height="`${40 * pageSize}px`"
v-bind="moreThanOnePage ? {height: `${40 * pageSize}px`} : {}"
v-bind="moreThanOnePage ? { height: `${40 * pageSize}px` } : {}"
:data="tableData"
v-loading="loading"
>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/threaddump/ThreadDump.vue
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ onMounted(() => {
<el-table
stripe
:show-header="false"
v-bind="threadGroupMoreThanOnePage ? {height: `${40 * threadGroupPageSize}px`} : {}"
v-bind="threadGroupMoreThanOnePage ? { height: `${40 * threadGroupPageSize}px` } : {}"
:data="tableDataOfThreadGroupStats"
>
<el-table-column type="expand">
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ body {
background-color: var(--el-bg-color-page);
color: var(--el-text-color-primary);

font-family: Inter, 'Helvetica Neue', Helvetica, 'PingFang SC',
'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
font-family: Inter, 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB',
'Microsoft YaHei', '微软雅黑', Arial, sans-serif;

-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
Expand Down

0 comments on commit 63f424d

Please sign in to comment.