Skip to content

Commit f1b5790

Browse files
committed
fix checkbox in selected item
1 parent fb6267a commit f1b5790

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/SLDSPicklistBase/list-item.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ module.exports = React.createClass({
147147
aria-checked={this.props.isSelected}
148148
role='menuitemradio'
149149
tabIndex={-1}>
150-
{this.props.isSelected?<Icon name='task2' size='small' position='left' category='standard' />:null}
150+
{this.props.isSelected?<Icon name='check' position='left' category='utility' />:null}
151151
{this.props.label}
152152
</a>
153153
</li>

0 commit comments

Comments
 (0)