Dashlets replicating

There is an issue with dashlets where it replicates when you click on the “>” to paginate. My investigation reveals that it happens when using the themeR but not theme7.

To reproduce the error, I did a clean installation of version 7.5 beta (but I know it happens in early versions too) and installed the sample data. I used the “My Accounts” dashlet and unchecked the “My Items Only” checkbox.

Attached are the before and after screenshots.

If I click the "Refresh’ icon on the dashlet it then re-render correctly again.

Anyone have ideas on fixing this issue?

Seems like clicking the home link at;

causes the issue because it doesn’t have the ?action=ajaxui in the URL

Fix is line 42 in file themes/suiteR/tpls/_headerModuleList.tpl
copy file to custom/themes/SuiteR/tpls/_headerModuleList.tpl and edit

<a class="navbar-brand" href="index.php">{$APP.LBL_BROWSER_TITLE}</a> 

to

<a class="navbar-brand" href="index.php?module=Home&action=index">{$APP.LBL_BROWSER_TITLE}</a>