Search command from Change node on worldmap opens user menu

I am using Node-RED in flowforge.
When issuing a search command in a Change node like this:
{"command":{"search":payload.EQUIP_IDENT}}

The search command works but it also opens up this menu:
menu

I don't want to see this menu and once it is opened I can't get rid of it unless I refresh my browser.

I have the user menu configured as hidden.

The behaviour I would like to see is that the search command works without displaying this menu.

Thanks,
Dave

To close it you can immediately send a blank search command
eg
{"command":{"search":""}}
for example by using a trigger node to send original message then send the close message.

Ok, thanks, that works.