Hi, I need to modify the following piece to set the href to the post URL instead of the profile URL. Any idea how to implement that please? Thanks
https://github.com/flarum/core/blob/master/js/src/forum/components/DiscussionListItem.js
href={user ? app.route.user(user) : '#'}
<Link
href={user ? app.route.user(user) : '#'}
className="DiscussionListItem-author"
title={extractText(
app.translator.trans('core.forum.discussion_list.started_text', { user: user, ago: humanTime(discussion.createdAt()) })
)}
oncreate={function (vnode) {
$(vnode.dom).tooltip({ placement: 'right' });
}}
>
{avatar(user, { title: '' })}
</Link>