mrackley / StratusForms

Lightweight InfoPath alternative for SharePoint 2007,2010,2013,2016,2019 and Office 365
82 stars 36 forks source link

forgot "typeof" #63

Open plbowers opened 4 years ago

plbowers commented 4 years ago

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