diff --git a/app/assets/javascripts/discourse/app/components/topic-list-item.gjs b/app/assets/javascripts/discourse/app/components/topic-list-item.gjs index 9913fe9bc44..3b314138ec2 100644 --- a/app/assets/javascripts/discourse/app/components/topic-list-item.gjs +++ b/app/assets/javascripts/discourse/app/components/topic-list-item.gjs @@ -427,6 +427,12 @@ export default class TopicListItem extends Component { @topic={{@data.topic}} @tagsForUser={{@data.tagsForUser}} @hideCategory={{@data.hideCategory}} + @onTitleFocus={{@data.onTitleFocus}} + @onTitleBlur={{@data.onTitleBlur}} + @includeUnreadIndicator={{@data.includeUnreadIndicator}} + @unreadClass={{@data.unreadClass}} + @newDotText={{@data.newDotText}} + @expandPinned={{@data.expandPinned}} /> , { @@ -434,6 +440,12 @@ export default class TopicListItem extends Component { topic: this.topic, tagsForUser: this.tagsForUser, hideCategory: this.hideCategory, + onTitleFocus: this._onTitleFocus, + onTitleBlur: this._onTitleBlur, + includeUnreadIndicator: this.includeUnreadIndicator, + unreadClass: this.unreadClass, + newDotText: this.newDotText, + expandPinned: this.expandPinned, } ) );