Shot list: show updated task name in shot list after editing task.
This commit is contained in:
@@ -19,6 +19,15 @@
|
||||
border-radius: 50%
|
||||
transition: all 100ms ease-in-out
|
||||
|
||||
.flash-on
|
||||
background-color: #dfd
|
||||
color: #040
|
||||
outline: 1px solid #040
|
||||
transition: all 0.2s
|
||||
|
||||
.flash-off
|
||||
transition: all 0.1s
|
||||
|
||||
.task-list-item
|
||||
border-right: 5px solid transparent
|
||||
color: $color-primary-dark
|
||||
|
@@ -24,7 +24,8 @@
|
||||
| {% for task in tasks_for_shots[shot._id][task_type] %}
|
||||
a(
|
||||
href="javascript:task_open('{{ task._id }}', '{{ project.url }}');",
|
||||
class="status-{{ task.properties.status }}") {{ task.name }}
|
||||
class="status-{{ task.properties.status }}")
|
||||
span(class="task-name-{{ task._id }}") {{ task.name }}
|
||||
br
|
||||
| {% endfor %}
|
||||
| {% if not tasks_for_shots[shot._id][task_type] %}
|
||||
|
Reference in New Issue
Block a user