Skip to content

Commit d9b4ca4

Browse files
committed
adds missing not null check
cherry-pick from a0b2cb4
1 parent 09e3246 commit d9b4ca4

File tree

1 file changed

+1
-1
lines changed
  • dsf-fhir/dsf-fhir-server/src/main/resources/fhir/static

1 file changed

+1
-1
lines changed

dsf-fhir/dsf-fhir-server/src/main/resources/fhir/static/form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ function newTaskInputBoolean(type, id, checkedTrue, checkedFalse, optional) {
177177
addError(errorListElement, "Input mandatory")
178178
}
179179

180-
if (value) {
180+
if (value !== null) {
181181
return {
182182
input: {
183183
type: type,

0 commit comments

Comments
 (0)