mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #472 from sharelatex/pr-fix-resolved-comments-order
Use ISO strings instead of of date type in locally resolved comments.
This commit is contained in:
commit
8161b0ff1e
1 changed files with 1 additions and 1 deletions
|
@ -414,7 +414,7 @@ define [
|
|||
return if !thread?
|
||||
thread.resolved = true
|
||||
thread.resolved_by_user = formatUser(user)
|
||||
thread.resolved_at = new Date()
|
||||
thread.resolved_at = new Date().toISOString()
|
||||
$scope.reviewPanel.resolvedThreadIds[thread_id] = true
|
||||
$scope.$broadcast "comment:resolve_threads", [thread_id]
|
||||
|
||||
|
|
Loading…
Reference in a new issue