about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/account_gallery/components/media_item.js
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-05-04 17:36:43 +0200
committerThibaut Girka <thib@sitedethib.com>2019-05-04 19:16:51 +0200
commitb7f69beebe2a4f7b94bc39772e7e9714540220b7 (patch)
tree9303f21625dcce9c4804f4df5ab66637e4d49130 /app/javascript/flavours/glitch/features/account_gallery/components/media_item.js
parent52a4284fe5bb2b2a167a35eabe4f1607ac3957ca (diff)
[Glitch] Make the cursor icon consistant across media types in account media gallery
Diffstat (limited to 'app/javascript/flavours/glitch/features/account_gallery/components/media_item.js')
-rw-r--r--app/javascript/flavours/glitch/features/account_gallery/components/media_item.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/account_gallery/components/media_item.js b/app/javascript/flavours/glitch/features/account_gallery/components/media_item.js
index cc35097a7..1eae552f6 100644
--- a/app/javascript/flavours/glitch/features/account_gallery/components/media_item.js
+++ b/app/javascript/flavours/glitch/features/account_gallery/components/media_item.js
@@ -132,7 +132,7 @@ export default class MediaItem extends ImmutablePureComponent {
 
     return (
       <div className='account-gallery__item' style={{ width, height }}>
-        <a className='media-gallery__item-thumbnail' href={status.get('url')} target='_blank' style={{ cursor: 'pointer' }} onClick={this.handleClick}>
+        <a className='media-gallery__item-thumbnail' href={status.get('url')} target='_blank' onClick={this.handleClick}>
           <canvas width={32} height={32} ref={this.setCanvasRef} className={classNames('media-gallery__preview', { 'media-gallery__preview--hidden': visible && loaded })} />
           {visible && thumbnail}
         </a>