From fbfe83936931da7025049e138a57778ae0131f40 Mon Sep 17 00:00:00 2001
From: tobias <tobias@thecodedev.de>
Date: Thu, 19 Sep 2019 21:21:19 +0200
Subject: [PATCH] Fix input field labels for task and subtask

---
 client/templates/admin/subtasks/edit.html | 2 +-
 client/templates/admin/tasks/edit.html    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/client/templates/admin/subtasks/edit.html b/client/templates/admin/subtasks/edit.html
index ecfa8ed..8fe65bf 100644
--- a/client/templates/admin/subtasks/edit.html
+++ b/client/templates/admin/subtasks/edit.html
@@ -26,7 +26,7 @@
                         <div class="col s12 m8 offset-m2 l6 offset-l3">
                             <div class="input-field col s12">
                                 <input id="title" name="Description" type="text" value="{% if subtask %}{{ subtask["Description"] }}{% endif %}">
-                                <label for="title">Title</label>
+                                <label for="title">Description</label>
                             </div>
                         </div>
                     </div>
diff --git a/client/templates/admin/tasks/edit.html b/client/templates/admin/tasks/edit.html
index 88b05f8..b3211c3 100644
--- a/client/templates/admin/tasks/edit.html
+++ b/client/templates/admin/tasks/edit.html
@@ -26,7 +26,7 @@
                         <div class="col s12 m8 offset-m2 l6 offset-l3">
                             <div class="input-field col s12">
                                 <input id="title" name="Description" type="text" value="{% if task %}{{ task["Description"] }}{% endif %}">
-                                <label for="title">Title</label>
+                                <label for="title">Description</label>
                             </div>
                         </div>
                     </div>
-- 
GitLab