diff options
author | Eugen <eugen@zeonfederated.com> | 2017-04-04 14:52:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-04 14:52:27 +0200 |
commit | 405c495c234d80a036a37052841850be29000d0b (patch) | |
tree | f75550468db285da784f5d2f359cb3b42a30f325 /app/assets | |
parent | fee331219389cf2a26c4f98a9ba858853838be4e (diff) | |
parent | 3abb0f7bc708ae8ca387aee8560b9558f8b209ba (diff) |
Merge pull request #804 from fhalna/development
Accessibility Fix.
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/javascripts/components/features/notifications/components/clear_column_button.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/features/notifications/components/clear_column_button.jsx b/app/assets/javascripts/components/features/notifications/components/clear_column_button.jsx index d75149a0e..6aa9d1efa 100644 --- a/app/assets/javascripts/components/features/notifications/components/clear_column_button.jsx +++ b/app/assets/javascripts/components/features/notifications/components/clear_column_button.jsx @@ -9,7 +9,7 @@ const iconStyle = { }; 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' /> </div> ); |