Skip to content

Commit

Permalink
Adds default value to requestPrivateNotes
Browse files Browse the repository at this point in the history
  • Loading branch information
alemangui committed Dec 17, 2024
1 parent 9d7aae2 commit 42fe08e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/views/DeclaredElementPage/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const modals = {
onClick() {
updateElement({
requestStatus: "INFORMATION",
requestPrivateNotes: notes.value,
requestPrivateNotes: notes.value || "",
}).then(closeModal)
},
},
Expand All @@ -127,7 +127,7 @@ const modals = {
onClick() {
updateElement({
requestStatus: "REJECTED",
requestPrivateNotes: notes.value,
requestPrivateNotes: notes.value || "",
}).then(closeModal)
},
},
Expand Down

0 comments on commit 42fe08e

Please sign in to comment.