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:
parent
953edad91f
commit
41d544be7e
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue