Skip to content

Commit

Permalink
update: note editing bug
Browse files Browse the repository at this point in the history
Signed-off-by: ArvinHuang <[email protected]>
  • Loading branch information
idwenwen committed Dec 28, 2023
1 parent 4526e69 commit 86b7105
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 86b7105

Please sign in to comment.