diff --git a/coral-component-cyclebutton/src/scripts/CycleButton.js b/coral-component-cyclebutton/src/scripts/CycleButton.js index ae972d8638..aa6167a22c 100644 --- a/coral-component-cyclebutton/src/scripts/CycleButton.js +++ b/coral-component-cyclebutton/src/scripts/CycleButton.js @@ -813,7 +813,6 @@ const CycleButton = Decorator(class extends BaseComponent(HTMLElement) { // The id reference for an HTML element that labels the button element accessibility name for the button element else if (name === 'aria-labelledby') { if (value || !this.getAttribute('aria-label')) { - this._elements.button.setAttribute('aria-labelledby', `${value} ${this._elements.button.id}`); this._elements.overlay.setAttribute('aria-labelledby', value || this._elements.button.id); this._elements.selectList[this._hasMenuItemRadioGroup() ? 'setAttribute' : 'removeAttribute']('aria-labelledby', value || this._elements.button.id); }