From 25a788f430d5209997b2218495f727fa49f1eff7 Mon Sep 17 00:00:00 2001 From: Adriano Dal Pastro Date: Fri, 5 Jun 2026 11:52:18 +0000 Subject: [PATCH] ui(measure): drop N/M prefix on task title, fix hidden directive MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove the "1/2"/"2/2" prefix before the task title; the number circle already shows the index. - The directive showed only "…": line-clamp-1 + whitespace-pre-wrap clamped a leading blank line to just the ellipsis. Use line-clamp-2 without pre-wrap so the description is actually visible. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/frontend/flask_app/templates/measure/task_list.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/frontend/flask_app/templates/measure/task_list.html b/src/frontend/flask_app/templates/measure/task_list.html index 7e46b01..6d7beac 100644 --- a/src/frontend/flask_app/templates/measure/task_list.html +++ b/src/frontend/flask_app/templates/measure/task_list.html @@ -153,13 +153,12 @@

- {{ loop.index }}/{{ tasks|length }} {{ task.title or task.name or (_('Task') ~ ' ' ~ loop.index) }}

{% if task.directive or task.description %} -

+

{{ task.directive or task.description }}

{% endif %}