Skip to content

Commit

Permalink
Fix sonar issue
Browse files Browse the repository at this point in the history
RISDEV-0000
  • Loading branch information
elaydis committed Nov 27, 2024
1 parent 0145335 commit eb4becc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/field-of-law/FieldsOfLaw.vue
Original file line number Diff line number Diff line change
Expand Up @@ -121,15 +121,15 @@ function removeNodeOfInterest() {
}
function updateIdentifierSearchTerm(newValue?: string) {
identifier.value = newValue ? newValue : ""
identifier.value = newValue ?? ""
}
function updateDescriptionSearchTerm(newValue?: string) {
description.value = newValue ? newValue : ""
description.value = newValue ?? ""
}
function updateNormSearchTerm(newValue?: string) {
norm.value = newValue ? newValue : ""
norm.value = newValue ?? ""
}
async function addFromList(fieldOfLaw: FieldOfLaw) {
Expand Down

0 comments on commit eb4becc

Please sign in to comment.