Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop-2.0.0' into develop-2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wmqwxb committed Dec 28, 2023
2 parents 5dff94d + 86b7105 commit 31bab1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default async function editMsg (
job_id: row.jobId,
party_id: row.partyId,
role: row.role,
notes: content.value || content
notes: content.value !== undefined ? content.value : content
})
if (responseData) {
after(content, scope)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const on = (origin?: string) => {
const off = (submit?: boolean) => {
if (submit) {
emits('submit', content)
emits('submit', content.value)
}
display.value = false
}
Expand Down

0 comments on commit 31bab1f

Please sign in to comment.