Fixed rendering issue for unassigned tasks
This commit is contained in:
@@ -76,7 +76,7 @@
|
|||||||
placeholder="Assigned to"
|
placeholder="Assigned to"
|
||||||
aria-describedby="task-addon-users")
|
aria-describedby="task-addon-users")
|
||||||
| {% for u in project.users %}
|
| {% for u in project.users %}
|
||||||
| <option value="{{ u._id }}" {% if u._id in task.properties.assigned_to['users'] %}selected{% endif %}>{{ u.full_name }}</option>
|
| <option value="{{ u._id }}" {% if task.properties.assigned_to.users and u._id in task.properties.assigned_to.users %}selected{% endif %}>{{ u.full_name }}</option>
|
||||||
| {% endfor %}
|
| {% endfor %}
|
||||||
|
|
||||||
.input-group-separator
|
.input-group-separator
|
||||||
|
Reference in New Issue
Block a user