Skip to content

Commit 9e9d68f

Browse files
style: adjust status column styling in websites list page (#11397)
1 parent 123e6b9 commit 9e9d68f

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

frontend/src/components/complex-table/index.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
:max-height="tableHeight"
1616
@row-contextmenu="handleRightClick"
1717
@row-click="handleRowClick"
18+
:tooltip-options="{
19+
placement: 'bottom-start',
20+
}"
1821
>
1922
<slot></slot>
2023
<template #empty>

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,13 @@
125125
</el-button>
126126
</template>
127127
</el-table-column>
128-
<el-table-column :label="$t('commons.table.status')" prop="status" width="120px" sortable>
128+
<el-table-column
129+
:label="$t('commons.table.status')"
130+
prop="status"
131+
width="120px"
132+
sortable
133+
align="center"
134+
>
129135
<template #default="{ row }">
130136
<span v-if="row.type === 'stream'">
131137
<el-text type="success">

0 commit comments

Comments
 (0)