From 21b04af524888fea134cc7dfa04e1203ede0427a Mon Sep 17 00:00:00 2001 From: kibigo! Date: Thu, 13 Jul 2017 14:20:51 -0700 Subject: Fixes lack of in header metadata table --- app/javascript/glitch/components/account/header.js | 26 ++++++++++++---------- 1 file changed, 14 insertions(+), 12 deletions(-) (limited to 'app/javascript/glitch') diff --git a/app/javascript/glitch/components/account/header.js b/app/javascript/glitch/components/account/header.js index 875ee3c54..e2d961240 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} -- cgit