Issue 2551341
Created on 2024-04-23 23:32 by rouilj, last changed 2024-05-26 02:58 by rouilj.
msg8011 |
Author: [hidden] (rouilj) |
Date: 2024-04-23 23:32 |
|
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?
|
msg8061 |
Author: [hidden] (rouilj) |
Date: 2024-05-26 02:58 |
|
Fixed in changeset: 7992:1e9c16b079fa.
|
|
Date |
User |
Action |
Args |
2024-05-26 02:58:31 | rouilj | set | status: new -> fixed priority: low resolution: remind -> fixed messages:
+ msg8061 |
2024-04-24 00:06:07 | rouilj | set | title: if @colums missing from an index url, the group headers colspan property = 0 -> if @columns missing from an index url, the group headers colspan property = 0 |
2024-04-23 23:32:29 | rouilj | set | resolution: remind |
2024-04-23 23:32:22 | rouilj | create | |
|