Hey,
for all of those views, you need to change a line of code.
Go via FTP to you Joomla installation -> Components -> com_jem -> views and to the tasks below for all views except calendar and weekcal.
1. Go into the folder of this view
2. Open view.html.php
3. Search for this line of code:
Code:
$pathway->setItemName(1, $menuitem->title);
4. Replace it with that:
Code:
$pathwayKeys = array_keys($pathway->getPathway());
$lastPathwayEntryIndex = end($pathwayKeys);
$pathway->setItemName($lastPathwayEntryIndex, $menuitem->title);
5. Upload the changed file and the breadcrumb should be correct.
I did a commit to my
JEM-Responsive Override-Github
and if it will be included into JEM, the bugfix will be included in the normal JEM on some happy day...