File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
framework/core/js/src/forum/components Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ import Component from '../../common/Component';
3
3
import icon from '../../common/helpers/icon' ;
4
4
import formatNumber from '../../common/utils/formatNumber' ;
5
5
import ScrollListener from '../../common/utils/ScrollListener' ;
6
- import { NestedStringArray } from '@askvortsov/rich-icu-message-formatter' ;
7
6
8
7
/**
9
8
* The `PostStreamScrubber` component displays a scrubber which can be used to
@@ -94,22 +93,22 @@ export default class PostStreamScrubber extends Component {
94
93
}
95
94
96
95
/**
97
- * @returns {NestedStringArray |string }
96
+ * @returns {any |string }
98
97
*/
99
98
firstPostLabel ( ) {
100
99
return app . translator . trans ( 'core.forum.post_scrubber.original_post_link' ) ;
101
100
}
102
101
103
102
/**
104
103
* @param {number } unreadCount
105
- * @returns {NestedStringArray |string }
104
+ * @returns {any |string }
106
105
*/
107
106
unreadLabel ( unreadCount ) {
108
107
return app . translator . trans ( 'core.forum.post_scrubber.unread_text' , { count : unreadCount } ) ;
109
108
}
110
109
111
110
/**
112
- * @returns {NestedStringArray |string }
111
+ * @returns {any |string }
113
112
*/
114
113
lastPostLabel ( ) {
115
114
return app . translator . trans ( 'core.forum.post_scrubber.now_link' ) ;
You can’t perform that action at this time.
0 commit comments