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
SaraHasNoLimitsSaraHasNoLimits 

Why do I get Access Check Failed warning in console when component is marked with global access

I am getting the following warning in the console even though my component is marked as access="global". This makes no sense to me. Is it possibly an issue with the debugger?

These are the warnings I get in the console whenever I click the checkbox.
WARNING: Access Check Failed! Component.getEvent():'click' of component 'markup://ui:inputCheckbox {22:37;a}' is not visible to ....
WARNING: Access Check Failed! AttributeSet.get(): attribute 'disableDoubleClicks' of component 'markup://ui:inputCheckbox {22:37;a}' .....
aura_proddebug.js:14495 WARNING: Access Check Failed! Component.getEvent():'change' of component 'markup://ui:inputCheckbox {22:37;a}'...

and this is the component markup:

<aura:component access="global" implements="force:appHostable,flexipage:availableForAllPageTypes" controller="ListRacesController">
    <aura:attribute name="races" type="Race__c[]"  />
    
    <aura:handler name="init" value="{!this}" action="{!c.doInit}" />
    <!-- key here is that the handler has no name attribute specified when dealing with application event -->
    <aura:handler event="c:addToRaceList" action="{!c.handleAddToRaces}" />
    
    <ltng:require styles="/resource/slds100/assets/styles/salesforce-lightning-design-system.min.css"/>
    <div class="slds">
        <div class="slds-m-around--small slds-p-top--large">
            <div class="slds-card">
                <aura:iteration items="{!v.races}" var="race">
                    <header class="slds-card__header">
                        <ui:outputText class="slds-text-heading--label" value="{!race.Name}" />
                    </header>
                    <section class="slds-card__body">
                          <div class="slds-tile slds-hint-parent">
                              <p class="slds-tile__title slds-truncate">Race Type: 
                                  <ui:outputText value="{!race.Type__c}" />
                              </p>
                            <p class="slds-truncate">Location: 
                                <ui:outputText value="{!race.Location__c}"/>
                            </p>
                            <p class="slds-truncate">Date/Time:
                                <ui:outputDateTime value="{!race.DateTime__c}" />
                            </p>
                            <p class="slds-truncate">Attended?
                                <ui:inputCheckbox value="{!race.Attended__c}" />
                            </p>
                            <p class="slds-truncate">Results: 
                                <ui:inputTextArea value="{!race.Results__c}"/>
                            </p>
                        </div>
                    </section>
                </aura:iteration>
            </div>
        </div>
    </div>
</aura:component>