Skip to content

Commit ed1b261

Browse files
authored
style: Code Style Format (#7351)
1 parent c0e0db6 commit ed1b261

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

frontend/src/views/host/firewall/ip/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ import { Host } from '@/api/interface/host';
130130
import { ElMessageBox } from 'element-plus';
131131
import i18n from '@/lang';
132132
import { MsgSuccess } from '@/utils/message';
133-
import {Position} from "@element-plus/icons-vue";
133+
import { Position } from '@element-plus/icons-vue';
134134
135135
const loading = ref();
136136
const activeTag = ref('address');

frontend/src/views/toolbox/supervisor/status/index.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,11 @@
4444
<span v-if="!data.isExist">{{ $t('tool.supervisor.notSupport') }}</span>
4545
<span v-else-if="!data.ctlExist">{{ $t('tool.supervisor.notSupportCrl') }}</span>
4646
<span v-else-if="data.init">{{ $t('tool.supervisor.initHelper') }}</span>
47-
<span @click="toDoc()" v-if="!data.isExist || !data.ctlExist" class="flex items-center justify-center gap-0.5">
47+
<span
48+
@click="toDoc()"
49+
v-if="!data.isExist || !data.ctlExist"
50+
class="flex items-center justify-center gap-0.5"
51+
>
4852
<el-icon><Position /></el-icon>
4953
{{ $t('firewall.quickJump') }}
5054
</span>

frontend/src/views/website/website/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
</div>
9595
</template>
9696
</el-table-column>
97-
<el-table-column :label="$t('website.sitePath')" prop="sitePath">
97+
<el-table-column :label="$t('website.sitePath')" prop="sitePath" width="90px">
9898
<template #default="{ row }">
9999
<el-button type="primary" link @click="toFolder(row.sitePath + '/index')">
100100
<el-icon>
@@ -134,7 +134,7 @@
134134
:label="$t('website.expireDate')"
135135
prop="expireDate"
136136
:sortable="'custom'"
137-
min-width="120px"
137+
min-width="150px"
138138
>
139139
<template #default="{ row }">
140140
<div v-if="row.showdate">

0 commit comments

Comments
 (0)