about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/account_gallery/index.js
diff options
context:
space:
mode:
authorDavid Yip <yipdw@member.fsf.org>2018-01-18 09:14:28 -0600
committerDavid Yip <yipdw@member.fsf.org>2018-01-18 09:14:28 -0600
commite27eedbd08c7d6191531783f662d576ea940a337 (patch)
tree06ec271b921b19339d2c5ea68c87b49d2d4f835f /app/javascript/flavours/glitch/features/account_gallery/index.js
parent201e82686f86d06e10afb62184a091417b09d5ad (diff)
parent708ec07e27dd02d03f2d155bcc61ae8de4c10c4a (diff)
Merge branch 'gs-master' into merge-upstream
Diffstat (limited to 'app/javascript/flavours/glitch/features/account_gallery/index.js')
-rw-r--r--app/javascript/flavours/glitch/features/account_gallery/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/features/account_gallery/index.js b/app/javascript/flavours/glitch/features/account_gallery/index.js
index 951e019e3..df66b3b21 100644
--- a/app/javascript/flavours/glitch/features/account_gallery/index.js
+++ b/app/javascript/flavours/glitch/features/account_gallery/index.js
@@ -95,10 +95,10 @@ export default class AccountGallery extends ImmutablePureComponent {
 
             <div className='account-gallery__container'>
               {medias.map(media =>
-                <MediaItem
+                (<MediaItem
                   key={media.get('id')}
                   media={media}
-                />
+                />)
               )}
               {loadMore}
             </div>