diff --git a/core/core-frontend/src/components/visualization/ComponentEditBar.vue b/core/core-frontend/src/components/visualization/ComponentEditBar.vue index 1455dfb8e8..db433813ec 100644 --- a/core/core-frontend/src/components/visualization/ComponentEditBar.vue +++ b/core/core-frontend/src/components/visualization/ComponentEditBar.vue @@ -120,7 +120,7 @@ >{{ t('visualization.show_data_info') }}
{{ t('visualization.export_as') }} + + diff --git a/core/core-frontend/src/custom-component/v-query/Time.vue b/core/core-frontend/src/custom-component/v-query/Time.vue index 324e76805b..8e0dfe4b06 100644 --- a/core/core-frontend/src/custom-component/v-query/Time.vue +++ b/core/core-frontend/src/custom-component/v-query/Time.vue @@ -513,6 +513,7 @@ const formatDate = computed(() => { v-else :key="config.timeGranularity + 1" v-model="selectValue" + class="icon-fixed_16" @visible-change="visibleChange" :disabled-date="disabledDate" :type="config.timeGranularity" @@ -615,4 +616,9 @@ const formatDate = computed(() => { text-align: center; border-bottom: 1px solid #eee; } +.icon-fixed_16 { + .ed-input__icon { + font-size: 16px !important; + } +} diff --git a/core/core-frontend/src/locales/en.ts b/core/core-frontend/src/locales/en.ts index 5ae1088565..84a1f36880 100644 --- a/core/core-frontend/src/locales/en.ts +++ b/core/core-frontend/src/locales/en.ts @@ -738,7 +738,7 @@ export default { complete: 'Complete', pager_color: 'Pager color', title_horizontal_position: 'Title horizontal position', - title_display_position: 'Title display position', + title_display_position: 'Label display position', title_color: 'Title color', label_color: 'Label color', input_box_style: 'Input box style', diff --git a/core/core-frontend/src/locales/tw.ts b/core/core-frontend/src/locales/tw.ts index 884fbf9d1f..3a00654012 100644 --- a/core/core-frontend/src/locales/tw.ts +++ b/core/core-frontend/src/locales/tw.ts @@ -713,7 +713,7 @@ export default { complete: '完成', pager_color: '分頁器配色', title_horizontal_position: '標題水平位置', - title_display_position: '標題顯示位置', + title_display_position: '標籤顯示位置', title_color: '標題顏色', label_color: '標籤顏色', input_box_style: '輸入框樣式', diff --git a/core/core-frontend/src/locales/zh-CN.ts b/core/core-frontend/src/locales/zh-CN.ts index 7939075432..67e13b5fce 100644 --- a/core/core-frontend/src/locales/zh-CN.ts +++ b/core/core-frontend/src/locales/zh-CN.ts @@ -716,7 +716,7 @@ export default { complete: '完成', pager_color: '分页器配色', title_horizontal_position: '标题水平位置', - title_display_position: '标题显示位置', + title_display_position: '标签显示位置', title_color: '标题颜色', label_color: '标签颜色', input_box_style: '输入框样式', diff --git a/core/core-frontend/src/views/visualized/data/datasource/index.vue b/core/core-frontend/src/views/visualized/data/datasource/index.vue index 946c0d4906..0e3fce0168 100644 --- a/core/core-frontend/src/views/visualized/data/datasource/index.vue +++ b/core/core-frontend/src/views/visualized/data/datasource/index.vue @@ -1545,7 +1545,7 @@ const getMenuList = (val: boolean) => { {{ - nodeInfo.description + nodeInfo.description || '-' }} @@ -1851,7 +1851,7 @@ const getMenuList = (val: boolean) => {

{{ t('datasource.table_name') }}

-

+

{{ dsTableDetail.tableName }}

@@ -1859,7 +1859,7 @@ const getMenuList = (val: boolean) => {

{{ t('datasource.table_description') }}

-

+

{{ dsTableDetail.name || '-' }}

@@ -2418,6 +2418,10 @@ const getMenuList = (val: boolean) => { font-size: 14px; font-weight: 400; margin: 0; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + width: 100%; } .table-name {