Skip to content

Commit 2d69f1f

Browse files
committed
fix: bug fix
1 parent 42d8261 commit 2d69f1f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

frontend/src/views/ds/Card.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ const onClickOutside = () => {
5757
<div class="name-icon">
5858
<img :src="icon" width="32px" height="32px" />
5959
<div class="info">
60-
<div class="name">{{ name }}</div>
60+
<div :title="name" class="name ellipsis">{{ name }}</div>
6161
<div class="type">{{ typeName }}</div>
6262
</div>
6363
</div>
64-
<div class="type-value">
64+
<div :title="description" class="type-value">
6565
{{ description }}
6666
</div>
6767

@@ -140,6 +140,7 @@ const onClickOutside = () => {
140140
font-weight: 500;
141141
font-size: 16px;
142142
line-height: 24px;
143+
max-width: 250px;
143144
}
144145
.type {
145146
font-weight: 400;

frontend/src/views/ds/DataTable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ const back = () => {
312312
<div class="preview-num">
313313
{{ t('ds.pieces_in_total', { msg: total, ms: showNum }) }}
314314
</div>
315-
<el-table :data="previewData.data" style="width: 100%; height: 600px">
315+
<el-table :data="previewData.data" style="width: 100%">
316316
<el-table-column
317317
v-for="(c, index) in previewData.fields"
318318
:key="index"

frontend/src/views/system/embedded/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ const saveHandler = () => {
714714
</el-select>
715715
</el-form-item>
716716

717-
<el-form-item class="private-list_form" prop="private_list">
717+
<el-form-item class="private-list_form">
718718
<template #label>
719719
<div class="private-list">
720720
{{ t('embedded.set_data_source') }}

0 commit comments

Comments
 (0)