about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
authorhalna_Tanaguru <fhalna@oceaneconsulting.com>2017-04-03 22:45:29 +0200
committerGitHub <noreply@github.com>2017-04-03 22:45:29 +0200
commit3f30ae1f97717177f29711d5b99d7970c6b75b3e (patch)
tree529442b15f83464007886190e64741164546ad79 /app
parent30964350b2ce3e2639e38fb25acf268c065b0bc5 (diff)
accessibility fix
eanable focus on ClearColumnButton
Diffstat (limited to 'app')
-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>
 );