File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
components/ai-chat/component/user-form
views/application/component Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -323,7 +323,10 @@ const checkInputParam = () => {
323323 }
324324 }
325325 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+ }
327330 }
328331
329332 if (msg .length > 0 ) {
Original file line number Diff line number Diff line change 1919 :label =" $t('views.application.applicationForm.form.reasoningContent.start')"
2020 >
2121 <el-input
22+ type =" textarea"
2223 v-model =" form.reasoning_content_start"
2324 :rows =" 6"
2425 maxlength =" 50"
2930 <el-col :span =" 12" >
3031 <el-form-item :label =" $t('views.application.applicationForm.form.reasoningContent.end')" >
3132 <el-input
33+ type =" textarea"
3234 v-model =" form.reasoning_content_end"
3335 :rows =" 6"
3436 maxlength =" 50"
You can’t perform that action at this time.
0 commit comments