From 32ef49a033d52acc55ed167187b8a9522d2e00e2 Mon Sep 17 00:00:00 2001 From: kibigo! Date: Thu, 13 Jul 2017 14:20:51 -0700 Subject: [PATCH] Fixes lack of in header metadata table --- .../glitch/components/account/header.js | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/app/javascript/glitch/components/account/header.js b/app/javascript/glitch/components/account/header.js index 875ee3c54a..e2d961240f 100644 --- a/app/javascript/glitch/components/account/header.js +++ b/app/javascript/glitch/components/account/header.js @@ -91,18 +91,20 @@ export default class Header extends ImmutablePureComponent { {metadata.length && ( - {(() => { - let data = []; - for (let i = 0; i < metadata.length; i++) { - data.push( - - - - - ); - } - return data; - })()} + + {(() => { + let data = []; + for (let i = 0; i < metadata.length; i++) { + data.push( + + + + + ); + } + return data; + })()} +
) || null}