[IMP] script todo: suivi install — colonne État moins large (12 -> 10)

La colonne « État » réservait 12 caractères alors que le plus long libellé
(«  effacée ») en fait 10 -> elle paraissait trop large. Ramenée à 10
(sans troncature).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Mathieu Benoit 2026-07-30 03:10:04 -04:00
parent e8c60a2d46
commit 233fdf2d2b

View file

@ -689,7 +689,9 @@ def run_monitor(manifest_path: str, run_app: bool = True):
table.add_column("#", key="seq", width=3)
table.add_column("VM", key="vm", width=26)
table.add_column("", key="err", width=4)
table.add_column("État", key="state", width=12)
# width=10 : juste assez pour le plus long libellé (« ❌ effacée »),
# sans la marge inutile de 12 qui faisait paraître la colonne large.
table.add_column("État", key="state", width=10)
# « Odoo » : l'UI web répond-elle sur :8069 ? (🟢 up / — down)
table.add_column("Odoo", key="odoo", width=6)
table.add_column("Durée", key="elapsed", width=7)