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: new remind
:
: rouilj : rouilj
Priority: :

Created on 2024-04-23 23:32 by rouilj, last changed 2024-04-24 00:06 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?
History
Date User Action Args
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