Skip to content

Commit d4e14c9

Browse files
committed
fix: bug fix
1 parent 1624a00 commit d4e14c9

File tree

7 files changed

+6
-8
lines changed

7 files changed

+6
-8
lines changed

frontend/src/components/layout/PwdForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ defineExpose({
7070
<div class="params-form">
7171
<el-form
7272
ref="pwdRef"
73-
@submit.prevent
7473
:rules="rules"
7574
label-position="top"
7675
:model="pwdForm"
7776
style="width: 100%"
77+
@submit.prevent
7878
>
7979
<el-form-item prop="pwd" :label="t('user.upgrade_pwd.old_pwd')">
8080
<el-input

frontend/src/views/chat/ChatList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import icon_expand_down_filled from '@/assets/embedded/icon_expand-down_filled.s
44
import rename from '@/assets/svg/icon_rename_outlined.svg'
55
import delIcon from '@/assets/svg/icon_delete.svg'
66
import { type Chat, chatApi } from '@/api/chat.ts'
7-
import { computed, nextTick, reactive, ref } from 'vue'
7+
import { computed, reactive, ref } from 'vue'
88
import dayjs from 'dayjs'
99
import { getDate } from '@/utils/utils.ts'
1010
import { groupBy } from 'lodash-es'

frontend/src/views/ds/DelMessageBox.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ defineProps({
1717
default: () => {},
1818
},
1919
})
20-
21-
const emits = defineEmits(['panelClick', 'smartClick'])
2220
</script>
2321

2422
<template>

frontend/src/views/ds/form.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626

2727
<div v-show="active === 0" class="container">
2828
<el-form
29-
@submit.prevent
3029
ref="dsFormRef"
3130
:model="form"
3231
label-position="top"
3332
label-width="auto"
3433
:rules="rules"
34+
@submit.prevent
3535
>
3636
<el-form-item :label="t('ds.form.name')" prop="name">
3737
<el-input v-model="form.name" />

frontend/src/views/setting/Professional.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
label-width="180px"
6565
label-position="top"
6666
class="sqlbot-form"
67-
@submit.prevent
6867
size="large"
68+
@submit.prevent
6969
>
7070
<el-form-item label="Term name">
7171
<el-input v-model="state.form.term" autocomplete="off" />

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ const dsRules = {
252252
message: t('datasource.please_enter') + t('common.empty') + t('user.workspace'),
253253
trigger: 'change',
254254
},
255-
]
255+
],
256256
}
257257
258258
const urlRules = {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,9 +609,9 @@ const columnRules = {
609609
>
610610
<el-form-item prop="name" :label="t('permission.rule_group_name')">
611611
<el-input
612+
v-model="currentPermission.name"
612613
maxlength="50"
613614
clearable
614-
v-model="currentPermission.name"
615615
:placeholder="
616616
$t('datasource.please_enter') +
617617
$t('common.empty') +

0 commit comments

Comments
 (0)