Closed rabrowne85 closed 3 years ago
The check to see if the views flag was being used was not being correctly checked. The getOptions() function returns false or the value. Therefore doing a true === ... would never pass.
getOptions()
false
true === ...
The check to see if the views flag was being used was not being correctly checked. The
getOptions()
function returnsfalse
or the value. Therefore doing atrue === ...
would never pass.