File tree 2 files changed +6
-1
lines changed
components/ai-chat/component/user-form
views/application/component
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -323,7 +323,10 @@ const checkInputParam = () => {
323
323
}
324
324
}
325
325
if (! api_form_data_context .value [' asker' ]) {
326
- api_form_data_context .value [' asker' ] = getRouteQueryValue (' asker' )
326
+ const asker = getRouteQueryValue (' asker' )
327
+ if (asker ) {
328
+ api_form_data_context .value [' asker' ] = getRouteQueryValue (' asker' )
329
+ }
327
330
}
328
331
329
332
if (msg .length > 0 ) {
Original file line number Diff line number Diff line change 19
19
:label =" $t('views.application.applicationForm.form.reasoningContent.start')"
20
20
>
21
21
<el-input
22
+ type =" textarea"
22
23
v-model =" form.reasoning_content_start"
23
24
:rows =" 6"
24
25
maxlength =" 50"
29
30
<el-col :span =" 12" >
30
31
<el-form-item :label =" $t('views.application.applicationForm.form.reasoningContent.end')" >
31
32
<el-input
33
+ type =" textarea"
32
34
v-model =" form.reasoning_content_end"
33
35
:rows =" 6"
34
36
maxlength =" 50"
You can’t perform that action at this time.
0 commit comments