You need to sign in to do that
Don't have an account?

I am getting "$Label.LightningControl.require doesn't exist" over the Tool Tip when setting lightning:select require="true"
<aura:component controller="SOWManager_CTL" implements="flexipage:availableForAllPageTypes">
<aura:attribute name="theaters" type="String[]"/>
<aura:handler name="init" action="{!c.doInit}" value="{!this}"/>
<form>
<div class="header">
<div style="margin-left:15%;float: left; margin-top:0.5%;" >
SOW ID : <ui:outputText aura:id="sowID" value="{!v.Name}" />
</div>
<div style="margin-left:50%;float: left;margin-top:0.5%;">
SOW Status : <ui:outputText aura:id="sowStatus" value="{!v.SOW_Status__c}" />
</div>
</div>
<lightning:tabset >
<lightning:tab label="General Info">
<fieldset class="slds-form--compound" style="margin-left:15%;margin-right:15%">
<div class="slds-form-element__group">
<div class="slds-form-element__row">
<div class="slds-form-element slds-size--1-of-2">
<lightning:select name="theaterGeo" label="Theater/Geography" required="true">
<option value="" text="Select Theater/Org"></option>
<aura:iteration items="{!v.theaters}" var="theater">
<option value="{!theater}" text="{!theater}"></option>
</aura:iteration>
</lightning:select>
</div>
<div class="slds-form-element slds-size--1-of-2">
</div>
</div>
</div>
</fieldset>
</lightning:tab>
</lightning:tabset>
</form>
</aura:component>
<aura:attribute name="theaters" type="String[]"/>
<aura:handler name="init" action="{!c.doInit}" value="{!this}"/>
<form>
<div class="header">
<div style="margin-left:15%;float: left; margin-top:0.5%;" >
SOW ID : <ui:outputText aura:id="sowID" value="{!v.Name}" />
</div>
<div style="margin-left:50%;float: left;margin-top:0.5%;">
SOW Status : <ui:outputText aura:id="sowStatus" value="{!v.SOW_Status__c}" />
</div>
</div>
<lightning:tabset >
<lightning:tab label="General Info">
<fieldset class="slds-form--compound" style="margin-left:15%;margin-right:15%">
<div class="slds-form-element__group">
<div class="slds-form-element__row">
<div class="slds-form-element slds-size--1-of-2">
<lightning:select name="theaterGeo" label="Theater/Geography" required="true">
<option value="" text="Select Theater/Org"></option>
<aura:iteration items="{!v.theaters}" var="theater">
<option value="{!theater}" text="{!theater}"></option>
</aura:iteration>
</lightning:select>
</div>
<div class="slds-form-element slds-size--1-of-2">
</div>
</div>
</div>
</fieldset>
</lightning:tab>
</lightning:tabset>
</form>
</aura:component>
I think you just found a bug in Lightning, I tested and it's really happening. You should report that and please let me know if you find a solution or workaround. In the meantime, try using ui:inputSelect instead where there is not tooltip.
Hope to have helped!
Regards.
Don't forget to mark your thread as 'SOLVED' with the answer that best helps you.