Just as title says, really weird.

All the group titles in the view have an extra > character after each grouping field.

Tried on 2 styles: Popup List and Popup Unformatted

Re-arranging views fields doesn't help.
Creating a global custom field and playing with html filters, rewriting fields, doesn't help.
Also prepending < br / to the end of field still doesn't make the > disappear.

Comments

theohawse’s picture

Figured out a work around for anyone else experiencing this issue:

js_injector module + the following code:

$(document).ready(function() {
  $("h3").each(function() {
    $(this).text($(this).text().replace(">", ""));
  });
});
bwong’s picture

Version: 6.x-2.x-dev » 6.x-2.10
Assigned: Unassigned » bwong
Issue summary: View changes
Status: Active » Closed (fixed)

Should be fixed in 6.x-2.10