-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: When asker is empty, do not pass the current parameter #2667
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ | |
:label="$t('views.application.applicationForm.form.reasoningContent.start')" | ||
> | ||
<el-input | ||
type="textarea" | ||
v-model="form.reasoning_content_start" | ||
:rows="6" | ||
maxlength="50" | ||
|
@@ -29,6 +30,7 @@ | |
<el-col :span="12"> | ||
<el-form-item :label="$t('views.application.applicationForm.form.reasoningContent.end')"> | ||
<el-input | ||
type="textarea" | ||
v-model="form.reasoning_content_end" | ||
:rows="6" | ||
maxlength="50" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The code provided appears to have minor syntax errors and could benefit from some improvements for readability and functionality. Here are the changes suggested: Improvements and Suggestions
Here’s the revised code snippet with these considerations applied: <template>
<!-- Form content -->
<el-form-item
prop="reasoning_content_start"
:label="$t('views.application.applicationForm.form.reasoningContent.start')"
>
<el-input v-model="form.reasoning_content_start" :rows="6" maxlength="50"></el-input>
</el-form-item>
<el-col :span="12">
<el-form-item
prop="reasoning_content_end"
:label="$t('views.application.applicationForm.form.reasoningContent.end')"
>
<el-input v-model="form.reasoning_content_end" :rows="6" maxlength="50"></el-input>
</el-form-item>
</el-col>
</template>
<script>
export default {
// Define form data
data() {
return {
form: {
reasoning_content_start: '',
reasoning_content_end: ''
}
};
},
// Other methods...
};
</script> Explanation
These adjustments enhance the maintainability and usability of the component. Make sure to verify that all referenced components and methods are compatible and correctly implemented in your application. |
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are two potential issues in the provided code:
The
if
condition for checkingapi_form_data_context.value['asker']
will only run once because it checks for a falsy value (null
,undefined
, etc.), and it immediately setsapi_form_data_context.value['asker']
togetRouteQueryValue('asker')
. If there is already anasker
value set, this check won't catch it because it hasn't been retrieved yet.There's no logic in place to handle scenarios where
msg.length === 0
.To address these issues, you can add additional logic to retrieve the
asker
value from the query parameters before setting it inapi_form_data_context.value
. Here's one possible suggestion:And ensure that the message length is checked properly: