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
ForceRookieForceRookie 

lightning combobox convert to slds combobox

Help me on how can I make this lightning:combobox to slds combobox. I'm confused on slds site because it is hardcoded.

<aura:attribute name="myObject" type="List"/>
<aura:attribute name="myCustomSettings" type="MyCustomSettings__c[]"/>
<aura:iteration items="{!v.myCustomSettings}" var="cs" indexVar="index">
<div data-label="Object">
    <lightning:combobox type="text" aura:id="object"
                         name="object"
                         placeholder="-Select-"
                         value="{!v.myCustomSettings.Object__c}"
                         options="{!v.myObject}"
                         onchange="{!c.handleObjChange}"/>
</div>
</aura:iteration>