StratusForms icon indicating copy to clipboard operation
StratusForms copied to clipboard

forgot "typeof"

Open plbowers opened this issue 5 years ago • 0 comments

In line 715 of stratus-forms-1.55.js you have this line:

if (repeatableArray[index].StratusFormsParent != "undefined") {

Pretty clearly it was meant to be this:

if (repeatableArray[index].StratusFormsParent !== undefined) { // note the addition of another = as well as removing quotes

or this:

if (typeof repeatableArray[index].StratusFormsParent != "undefined") { // note the addition of typeof

plbowers avatar Oct 26 '19 21:10 plbowers