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
Stefaan Somers 11Stefaan Somers 11 

Action failed: one:dockingPanelManager$controller$onNotify [Cannot read property 'gid' of undefined

Cannot read property 'gid' of undefined
Since a few weeks we have the following error in our quick action

Error while creating component for lightning component quick action [Action failed: one:dockingPanelManager$controller$onNotify [Cannot read property 'gid' of undefined]]

The only thing I do in this quick action is :
openURL : function(component, event, helper) { let url = ''; if(component.get("v.recordId").includes('a09')){ url = "https://xxx/idToUpdate="+component.get("v.recordId"); url = "https://xxx"+component.get("v.recordId"); }else{ url = "https://xxxx"; } var urlEvent = $A.get("e.force:navigateToURL"); urlEvent.setParams({ "url": url }); urlEvent.fire(); var dismissActionPanel = $A.get("e.force:closeQuickAction"); dismissActionPanel.fire(); }

 
PriyaPriya (Salesforce Developers) 
Hi Steafan,

Please raise a ticket with salesforce to debug further into this issue.

Regards
Stefaan Somers 11Stefaan Somers 11
Salesforce Support doesn't want to support this, because this is a development issue. So they told me to post this on this forum.

I find it a little bit unfair, since it's all about a standard component that gives the issue.