fix(kanblendar): make task description optional

Removed the 'required' attribute from the task description field to allow users to create tasks without a description. This change addresses user feedback requesting more flexibility in task creation forms.
This commit is contained in:
Kumi 2024-07-31 08:53:35 +02:00
parent 953edad91f
commit 41d544be7e
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -89,7 +89,7 @@ class Kanblendar {
<label for="kanblendar-taskTitle">Title:</label>
<input type="text" id="kanblendar-taskTitle" name="kanblendar-taskTitle" required>
<label for="kanblendar-taskDescription">Description:</label>
<textarea id="kanblendar-taskDescription" name="kanblendar-taskDescription" required></textarea>
<textarea id="kanblendar-taskDescription" name="kanblendar-taskDescription"></textarea>
<label for="kanblendar-taskDueTime">Due Time:</label>
<input type="datetime-local" id="kanblendar-taskDueTime" name="kanblendar-taskDueTime">
<label for="kanblendar-taskColumn">Column:</label>