about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEugen <eugen@zeonfederated.com>2017-04-04 14:52:27 +0200
committerGitHub <noreply@github.com>2017-04-04 14:52:27 +0200
commit405c495c234d80a036a37052841850be29000d0b (patch)
treef75550468db285da784f5d2f359cb3b42a30f325
parentfee331219389cf2a26c4f98a9ba858853838be4e (diff)
parent3abb0f7bc708ae8ca387aee8560b9558f8b209ba (diff)
Merge pull request #804 from fhalna/development
Accessibility Fix.
-rw-r--r--app/assets/javascripts/components/features/notifications/components/clear_column_button.jsx2
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>
 );