From 91a2a8f0fe640dac8c76515bf3fd04b0c2f49a66 Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Wed, 15 May 2024 08:56:30 +0200
Subject: [PATCH] Fix broken enabler addition in Day view.

---
 templates/day.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/templates/day.html b/templates/day.html
index b816f35..f6e2265 100644
--- a/templates/day.html
+++ b/templates/day.html
@@ -149,7 +149,7 @@ add todo: <input name="new_todo" list="processes" autocomplete="off" />
 {% endif %}
 {% endfor %}
 
-<td><input list="todos_for_{{condition.id_}}" /></td>
+<td><input name="new_todo" list="todos_for_{{condition.id_}}" /></td>
 <datalist name="new_todo" id="todos_for_{{condition.id_}}" />
 {% for process in enablers_for[condition.id_] %}
 <option value="{{process.id_}}">{{process.title.newest|e}}</option>
-- 
2.30.2