If you ever struggled to update the API version of your Lightning Component, then we are in the same team.
I was also struggling with the same issue but couldn't find any configuration to update the API version of a lightning component.
Finally after surfing a little more I found out a SOQL query to modify the API version of a Lightning Component.
Please follow below steps :
- Open Developer Console.
- In query editor type below query :
- SELECT Id, DeveloperName, ApiVersion, Description FROM AuraDefinitionBundle WHERE DeveloperName = "<Your Component name>"
- In the result you will be able to see that particular component.
- Update the API version by editing the row.
- Click on save rows button to save the changes.
2 Comments
Thanks. This post saved my time.
ReplyDeleteGlad it helped !
Delete