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
satyajit biswas 27satyajit biswas 27 

how to degrade the api version to 39 in lightning component

if there and possibility to degrade the api version to 39 so that locker service gets disable.
will the slds works below version 39.
 
pradeep kumar yadavpradeep kumar yadav
Hi Satyajit,

You can change it by fetching in VS code or using Ant.
SLDS works on 39.0 and above versions. 
satyajit biswas 27satyajit biswas 27
tq pradeep.
Sudipta Halder 1Sudipta Halder 1
You can run the below SOQL in Developer Console and update "ApiVersion" directly from there.

SELECT Id, DeveloperName, ApiVersion, Description FROM AuraDefinitionBundle WHERE DeveloperName = "<Component name>"

like - SELECT Id, DeveloperName, ApiVersion, Description FROM AuraDefinitionBundle WHERE DeveloperName = 'Conference'
and modify it 39 and click on Save Rowes.
Tina Accilien 4Tina Accilien 4
Thank you Sudipta Halder 1!