From 077c28dc6444c9963ccf2ba96959caad8f1ac575 Mon Sep 17 00:00:00 2001 From: Matteo Contrini Date: Thu, 24 Sep 2020 06:08:12 +0200 Subject: [PATCH] Fix comment for the time gap feature in PostStream (#2294) The time interval for the time gap feature is 4 days and not 4 hours. --- framework/core/js/src/forum/components/PostStream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/js/src/forum/components/PostStream.js b/framework/core/js/src/forum/components/PostStream.js index afb6a2756..de3351845 100644 --- a/framework/core/js/src/forum/components/PostStream.js +++ b/framework/core/js/src/forum/components/PostStream.js @@ -47,7 +47,7 @@ export default class PostStream extends Component { attrs['data-id'] = post.id(); attrs['data-type'] = post.contentType(); - // If the post before this one was more than 4 hours ago, we will + // If the post before this one was more than 4 days ago, we will // display a 'time gap' indicating how long it has been in between // the posts. const dt = time - lastTime;