Use ISO strings instead of of date type in locally resolved comments.

This commit is contained in:
Paulo Reis 2017-03-31 14:29:28 +01:00
parent 42009093ef
commit 855d37289b

View file

@ -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]