So I have the following, where i want to be able to control wether or not a menu is visible or not by updating an observable boolean. But I get the following error for the below: “Cannot parse ‘menuOpen’ as bool. String was not recognized as a valid bool”. Why would this be the case? A boolean value is parse through?
<WhileTrue Value="menuOpen">
<Set EdgeNavigator.Active="menu" />
</WhileTrue>
var menuOpen = Observable(true);
module.exports = {
menuOpen: menuOpen
}