mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-20 05:44:01 +00:00
accessibility fix
eanable focus on ClearColumnButton
This commit is contained in:
parent
30964350b2
commit
3f30ae1f97
|
@ -9,7 +9,7 @@ const iconStyle = {
|
||||||
};
|
};
|
||||||
|
|
||||||
const ClearColumnButton = ({ onClick }) => (
|
const ClearColumnButton = ({ onClick }) => (
|
||||||
<div className='column-icon' style={iconStyle} onClick={onClick}>
|
<div className='column-icon' tabindex='0' style={iconStyle} onClick={onClick}>
|
||||||
<i className='fa fa-trash' />
|
<i className='fa fa-trash' />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue