fix: skip logic (#1559)

This commit is contained in:
Dhruwang Jariwala
2023-11-02 18:35:12 +05:30
committed by GitHub
parent e5775e3724
commit 6bace2b826

View File

@@ -47,6 +47,7 @@ export function evaluateCondition(logic: TSurveyLogic, responseValue: any): bool
(Array.isArray(responseValue) && responseValue.length === 0) ||
responseValue === "" ||
responseValue === null ||
responseValue === undefined ||
responseValue === "dismissed"
);
default: