function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Igor Filatov 11Igor Filatov 11 

Salesforce Lightning custom button issue

Hello to everyone reading this question, i`ve dealed with bug (or i don`t know if this is bug).

I`ve created Lightning quick action with markup:
<aura:component controller="CaseAssignToMeController" implements="force:lightningQuickActionWithoutHeader,force:hasRecordId" >
	<!--<aura:attribute name="recordId" type="String" default="{!v.recordId}"/>-->
    <aura:handler name="init" value="{!this}" action="{!c.doInit}"/><!--handler on page load to show current week and current user stats-->
    <ui:outputText aura:id="message" value=""></ui:outputText>
</aura:component>


How button looks.

And this button shows as chatter action like post. Does somebody know how to solve this issue? I want this action as standard like 'Change Record Type' or similar.

Best Answer chosen by Igor Filatov 11
Ramakrishna Reddy GouniRamakrishna Reddy Gouni
It is depend on you selected object. 
- if you select Task, Note, Event any service cloud objects then it comes under chatter otherwise it's comes under quick actions at top right 

All Answers

Ramakrishna Reddy GouniRamakrishna Reddy Gouni
It is depend on you selected object. 
- if you select Task, Note, Event any service cloud objects then it comes under chatter otherwise it's comes under quick actions at top right 
This was selected as the best answer
Igor Filatov 11Igor Filatov 11
Okay, thank you. Salesforce Dev`s shoud note this in some advices, because it`s never mentioned.