You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 479 of SELECT.gs should be have '&&' instead of '||'. Match should occur if data is not " " AND data is not "". Otherwise when using OR ('||'), match will always be true.
match = data[i][attribute_idx] != " " && data[i][attribute_idx] != "";
The text was updated successfully, but these errors were encountered:
Line 479 of SELECT.gs should be have '&&' instead of '||'. Match should occur if data is not " " AND data is not "". Otherwise when using OR ('||'), match will always be true.
match = data[i][attribute_idx] != " " && data[i][attribute_idx] != "";
The text was updated successfully, but these errors were encountered: