This is an automated email from the ASF dual-hosted git repository.
jinsongzhou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/amoro.git
The following commit(s) were added to refs/heads/master by this push:
new 0b1023e8a [Improvement] Improve the table display on the optimizing
tables page (#3282)
0b1023e8a is described below
commit 0b1023e8a5827ef032986369bb323d96400e114c
Author: chouchouji <[email protected]>
AuthorDate: Mon Oct 21 17:51:01 2024 +0800
[Improvement] Improve the table display on the optimizing tables page
(#3282)
---
amoro-web/src/views/optimize/components/List.vue | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/amoro-web/src/views/optimize/components/List.vue
b/amoro-web/src/views/optimize/components/List.vue
index faab20c9c..487627efb 100644
--- a/amoro-web/src/views/optimize/components/List.vue
+++ b/amoro-web/src/views/optimize/components/List.vue
@@ -46,9 +46,9 @@ const releaseLoading = ref<boolean>(false)
const optimizerGroupList = ref<ILableAndValue[]>([])
const columns = computed(() => [
- { dataIndex: 'tableName', title: t('table'), width: 200, scopedSlots: {
customRender: 'tableName' } },
+ { dataIndex: 'tableName', title: t('table'), width: 300, scopedSlots: {
customRender: 'tableName' } },
{ dataIndex: 'groupName', title: t('optimizerGroup'), width: 180, ellipsis:
true },
- { dataIndex: 'optimizeStatus', title: t('optimizingStatus'), width: 240,
ellipsis: true },
+ { dataIndex: 'optimizeStatus', title: t('optimizingStatus'), width: 150,
ellipsis: true },
{ dataIndex: 'duration', title: t('duration'), width: 150, ellipsis: true },
{ dataIndex: 'fileCount', title: t('fileCount'), width: 150, ellipsis: true
},
{ dataIndex: 'fileSizeDesc', title: t('fileSize'), width: 150, ellipsis:
true },
@@ -218,7 +218,7 @@ onMounted(async () => {
<template #bodyCell="{ column, record }">
<template v-if="column.dataIndex === 'tableName'">
<a-typography-text
- style="width: 200px"
+ style="width: 300px"
:ellipsis="{
tooltip: record.tableName,
}"