push
This commit is contained in:
parent
19df4cba55
commit
1bb6319fcf
|
@ -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,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue