This commit is contained in:
Jarek Radosz 2024-09-17 02:11:28 +02:00
parent 19df4cba55
commit 1bb6319fcf
No known key found for this signature in database
GPG Key ID: 62D0FBAE5BF9B953
1 changed files with 12 additions and 0 deletions

View File

@ -427,6 +427,12 @@ export default class TopicListItem extends Component {
@topic={{@data.topic}} @topic={{@data.topic}}
@tagsForUser={{@data.tagsForUser}} @tagsForUser={{@data.tagsForUser}}
@hideCategory={{@data.hideCategory}} @hideCategory={{@data.hideCategory}}
@onTitleFocus={{@data.onTitleFocus}}
@onTitleBlur={{@data.onTitleBlur}}
@includeUnreadIndicator={{@data.includeUnreadIndicator}}
@unreadClass={{@data.unreadClass}}
@newDotText={{@data.newDotText}}
@expandPinned={{@data.expandPinned}}
/> />
</template>, </template>,
{ {
@ -434,6 +440,12 @@ export default class TopicListItem extends Component {
topic: this.topic, topic: this.topic,
tagsForUser: this.tagsForUser, tagsForUser: this.tagsForUser,
hideCategory: this.hideCategory, hideCategory: this.hideCategory,
onTitleFocus: this._onTitleFocus,
onTitleBlur: this._onTitleBlur,
includeUnreadIndicator: this.includeUnreadIndicator,
unreadClass: this.unreadClass,
newDotText: this.newDotText,
expandPinned: this.expandPinned,
} }
) )
); );