[SalesForce] forceChatter:feed lightning component actions comment, share, edit buttons not working

Greetings and thanks for the read/advice!

Have a very basic application:

<aura:application extends="force:slds">
    <c.MyAPP_TopicFeed/>
</aura:application>

with a lightning component that looks like this:

<aura:component >
<div aura:id="feedContainer" class="feed-container">
    <forceChatter:feed type="Topics" subjectId="0TOC00000008eVX" />
</div>

Please note the subjectId is hardcoded to a valid topic in my org..

This component displays the following when rendered but the buttons and functions – comment, share, and edit features are not functional.

enter image description here

When I inspect the source and look at the action it appears that these methods are doing anything.. javascript:void(0)

<a title="Comment" href="javascript:void(0)" class="cuf-commentTrigger drillInTarget slds-post__footer-action">
<svg class=" slds-icon slds-icon-text-default slds-icon--x-small slds-align-middle ">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="/_slds/icons/v7.18.0/utility-sprite/svg/symbols.svg#share_post"></use>
</svg>
 Comment
</a>

Anyone know why this doesn't work and moreover how to make this standard component functional?

Thank you!!

Best Answer

The reason this is broken is because some of the events and functionality listen for events inside lightning frame .

Hence you will need to use app builder and create a page and add this component to get it functional .

You can test this without adding in lightning app builder or the community builder .