Email Module - Search field and Top Menu went missing

I have 3 monitored inboxes and whenever I click on any of the inboxes, the “Search” field and top menu went missing.

BEFORE:-

AFTER:-

Suitecrm version: 8.1.3
PHP version: 7.4
MySQL version: 8.0.30
Docker version: 20.10.17

Hey
Modify the public/legacy/modules/Emails/include/ListView/FoldersViewModal.js file
line number 90
From
top.location = 'index.php?module=Emails&action=index&folders_id=' + mbox;
To
location = 'index.php?module=Emails&action=index&folders_id=' + mbox;
This will cause the iframe to navigate to selected folder

1 Like

For reference, here is the PR @abuzarfaris created with the fix