Message8011
It looks like colspan for the group headers is derived from count(@columns).
If @colums is missing it becomes 0, but the backend code displays all columns
of the issue class.
Changing:
<th tal:attributes="colspan python:len(request.columns)" class="group">
to an arbitrary large number:
<th tal:attributes="colspan python:len(request.columns) or 100" class="group">
solves the issue. I don't think it has any bad effects.
Comments? |
|
Date |
User |
Action |
Args |
2024-04-23 23:32:22 | rouilj | set | recipients:
+ rouilj |
2024-04-23 23:32:22 | rouilj | set | messageid: <1713915142.64.0.215430126616.issue2551341@roundup.psfhosted.org> |
2024-04-23 23:32:22 | rouilj | link | issue2551341 messages |
2024-04-23 23:32:22 | rouilj | create | |
|