Roundup Tracker - Issues

Issue 2551341

classification
if @columns missing from an index url, the group headers colspan property = 0
Type: behavior Severity: minor
Components: Web interface Versions:
process
Status: fixed fixed
:
: rouilj : rouilj
Priority: low :

Created on 2024-04-23 23:32 by rouilj, last changed 2024-05-26 02:58 by rouilj.

Messages
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.
History
Date User Action Args
2024-05-26 02:58:31rouiljsetstatus: new -> fixed
priority: low
resolution: remind -> fixed
messages: + msg8061
2024-04-24 00:06:07rouiljsettitle: 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:29rouiljsetresolution: remind
2024-04-23 23:32:22rouiljcreate