Force toolbar icon to show on mobile?

I can’t figure this out. This search icon disappears on mobile devices. how do I force it to always show?

screenshot_001

Hello,

If the search icon disappears on mobile devices, you can try using the enableDesktopOnlyMode API.

instance.UI.enableDesktopOnlyMode();

If that doesn’t work, you could also try adding the following:

instance.UI.enableElements(['searchButton']);

The parameter would be an Array of data-element attribute values for DOM elements you want to enable.

Best Regards,
Darian Chen