I'm currently facing an issue with displaying a Lightning Web Component (LWC) quick action button on the Task record page.
Here are the details of what I've done:
1. LWC Quick Action Creation:
- I have created a Lightning Web Component for a quick action under the Task object.
- I updated the XML as shown below:
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>57.0</apiVersion>
<isExposed>true</isExposed>
<targets>
<target>lightning__RecordAction</target>
</targets>
<targetConfigs>
<targetConfig targets="lightning__RecordAction">
<actionType>ScreenAction</actionType>
</targetConfig>
</targetConfigs>
</LightningComponentBundle>
2. Page Layout Configuration:
- I have added the button to the page layout under "Salesforce Mobile and Lightning Experience Actions."
Despite following these steps, the quick action button is not visible on the Task record page. I have ensured that the action is available in the "Lightning and Mobile Actions" section of the page layout.
Can anyone help me identify what might be causing this issue or suggest any additional steps to troubleshoot? Your assistance is highly appreciated.
Thank you in advance!
#Developers #Lightning Web Components #Quick Actions #Pagelayouts
I had a similar problem, and found a solution for my case:
In Service Setup > Channels > Digital Experiences > Settings, make sure the "Use Lightning web components on your record pages in Aura sites" option under "Experience Management Settings" is checked.