about summary refs log tree commit diff
path: root/app/assets/javascripts
diff options
context:
space:
mode:
authorJantsoP <jantso.porali@gmail.com>2017-04-05 10:07:17 +0200
committerGitHub <noreply@github.com>2017-04-05 10:07:17 +0200
commit20b53e6add351e5bb5ff1bd4d675db6252e03293 (patch)
treee252e354e63765d1f28919f2ac58de26001806cb /app/assets/javascripts
parent3ec221d3b7093e2a2606ec04036cca9e9f1f733d (diff)
parentccb6a658fd1a2e596c95d5b8e7a39f72a5f5b14b (diff)
Merge branch 'master' into master
Diffstat (limited to 'app/assets/javascripts')
-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>
 );