diff --git a/framework/core/js/src/forum/components/PostStreamScrubber.js b/framework/core/js/src/forum/components/PostStreamScrubber.js index 5ab4fb7de3..047398a3a2 100644 --- a/framework/core/js/src/forum/components/PostStreamScrubber.js +++ b/framework/core/js/src/forum/components/PostStreamScrubber.js @@ -94,7 +94,7 @@ export default class PostStreamScrubber extends Component { } /** - * @returns {NestedStringArray} + * @returns {NestedStringArray|string} */ firstPostLabel() { return app.translator.trans('core.forum.post_scrubber.original_post_link'); @@ -102,14 +102,14 @@ export default class PostStreamScrubber extends Component { /** * @param {number} unreadCount - * @returns {NestedStringArray} + * @returns {NestedStringArray|string} */ unreadLabel(unreadCount) { return app.translator.trans('core.forum.post_scrubber.unread_text', { count: unreadCount }); } /** - * @returns {NestedStringArray} + * @returns {NestedStringArray|string} */ lastPostLabel() { return app.translator.trans('core.forum.post_scrubber.now_link');