We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 123e6b9 commit 9e9d68fCopy full SHA for 9e9d68f
frontend/src/components/complex-table/index.vue
@@ -15,6 +15,9 @@
15
:max-height="tableHeight"
16
@row-contextmenu="handleRightClick"
17
@row-click="handleRowClick"
18
+ :tooltip-options="{
19
+ placement: 'bottom-start',
20
+ }"
21
>
22
<slot></slot>
23
<template #empty>
frontend/src/views/website/website/index.vue
@@ -125,7 +125,13 @@
125
</el-button>
126
</template>
127
</el-table-column>
128
- <el-table-column :label="$t('commons.table.status')" prop="status" width="120px" sortable>
+ <el-table-column
129
+ :label="$t('commons.table.status')"
130
+ prop="status"
131
+ width="120px"
132
+ sortable
133
+ align="center"
134
+ >
135
<template #default="{ row }">
136
<span v-if="row.type === 'stream'">
137
<el-text type="success">
0 commit comments