Skip to content

Commit ec63d65

Browse files
committed
fix: bug fix
1 parent 54c4323 commit ec63d65

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

frontend/src/i18n/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@
294294
"filter": "Filter",
295295
"batch_import": "Batch import",
296296
"add_users": "Add users",
297-
"selected_2_users": "Do you want to delete the selected 2 users?",
297+
"selected_2_users": "Do you want to delete the selected {msg} users?",
298298
"filter_conditions": "Filter conditions",
299299
"enable": "Enable",
300300
"disable": "Disable",

frontend/src/views/ds/Datasource.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ const back = () => {
328328
: $t('datasource.new_data_source')
329329
}}</span>
330330
<div v-if="!editDatasource" class="flex-center" style="width: 100%">
331-
<el-steps custom style="max-width: 500px; flex: 1" :active="activeStep" align-center>
331+
<el-steps custom style="max-width: 800px; flex: 1" :active="activeStep" align-center>
332332
<el-step>
333333
<template #title> {{ $t('qa.select_datasource') }} </template>
334334
</el-step>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const handleEmbedded = () => {
6969

7070
<style lang="less" scoped>
7171
.card {
72-
width: 371px;
72+
width: 400px;
7373
height: 168px;
7474
border: 1px solid #dee0e3;
7575
padding: 16px;

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,9 @@ const saveHandler = () => {
737737
<template #label>
738738
<div class="private-list">
739739
{{ t('embedded.set_data_source') }}
740-
<span class="open-the_query">{{ $t('embedded.open_the_query') }} </span>
740+
<span :title="$t('embedded.open_the_query')" class="open-the_query ellipsis"
741+
>{{ $t('embedded.open_the_query') }}
742+
</span>
741743
</div>
742744
</template>
743745
<div class="card-ds_content">
@@ -971,6 +973,7 @@ const saveHandler = () => {
971973
.open-the_query {
972974
color: #ff8800;
973975
margin-left: 4px;
976+
max-width: 650px;
974977
}
975978
}
976979
@@ -1069,7 +1072,7 @@ const saveHandler = () => {
10691072
position: relative;
10701073
}
10711074
.popover-item {
1072-
height: 98px;
1075+
min-height: 98px;
10731076
display: flex;
10741077
padding-left: 8px;
10751078
padding-right: 8px;

0 commit comments

Comments
 (0)