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