Skip to content
Snippets Groups Projects
Commit 841ae1c7 authored by Emmanuel Viennet's avatar Emmanuel Viennet
Browse files

Fix: table recap style col. vide

parent 187f4721
No related branches found
No related tags found
No related merge requests found
......@@ -629,7 +629,7 @@ class ResultatsSemestre(ResultatsCache):
c_class = f"_{col_id}_class"
if "col_empty" in bottom_infos["moy"].get(c_class, ""):
for row in rows:
row[c_class] += " col_empty"
row[c_class] = row.get(c_class, "") + " col_empty"
titles[c_class] += " col_empty"
for row in bottom_infos.values():
row[c_class] = row.get(c_class, "") + " col_empty"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment