fixes
This commit is contained in:
@ -44,7 +44,11 @@ const AllTaskTableItem = ({ task, projects }) => {
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
{new Date(task.timers.reduce((acc, cur) => acc + cur.deltaSeconds, 0) * 1000).toISOString().slice(11, 19)}
|
||||
{new Date(
|
||||
task.timers.reduce((acc, cur) => acc + cur.deltaSeconds, 0) * 1000
|
||||
)
|
||||
.toISOString()
|
||||
.slice(11, 19)}
|
||||
</td>
|
||||
<td>{new Date(task.created_at).toLocaleDateString()}</td>
|
||||
<td>{new Date(task.dead_line).toLocaleDateString()}</td>
|
||||
|
Reference in New Issue
Block a user