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
grabs the false in the first step and then the || operator sees false which makes it to continue to the next variable, so it reads the value from existing state (where it is true).
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior:
visibleAtStart
to false. This savesvisibleAtStart: false
to your map config.Why?
Because:
grabs the
false
in the first step and then the||
operator seesfalse
which makes it to continue to the next variable, so it reads the value from existing state (where it istrue
).This should've been:
The text was updated successfully, but these errors were encountered: