Skip to content

Commit

Permalink
Merge pull request #61 from salesforce-ux/picklist-at
Browse files Browse the repository at this point in the history
Changed Picklist assistive-text for arrows
  • Loading branch information
brandonferrua committed Oct 22, 2015
2 parents c1ac403 + abcfc81 commit ed7ef19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/components/picklists/index.react.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class PickListArrows extends React.Component {
render() {
return (
<div className={pf('grid grid--vertical')}>
{ this.symbols.map((s, i) => <ButtonIcon flavor="icon-container" sprite="utility" assistiveText="Pick list" symbol={s} onClick={this.arrowClicked.bind(this, s)} key={i} /> ) }
{ this.symbols.map((s, i) => <ButtonIcon flavor="icon-container" sprite="utility" assistiveText={'Arrow ' + s} symbol={s} onClick={this.arrowClicked.bind(this, s)} key={i} /> ) }
</div>
);
}
Expand Down

0 comments on commit ed7ef19

Please sign in to comment.