mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2025-01-11 22:46:55 +01:00
Fixes lack of <tbody> in header metadata table
This commit is contained in:
parent
3ea02314b9
commit
21b04af524
1 changed files with 14 additions and 12 deletions
|
@ -91,6 +91,7 @@ export default class Header extends ImmutablePureComponent {
|
|||
|
||||
{metadata.length && (
|
||||
<table className='account__metadata'>
|
||||
<tbody>
|
||||
{(() => {
|
||||
let data = [];
|
||||
for (let i = 0; i < metadata.length; i++) {
|
||||
|
@ -103,6 +104,7 @@ export default class Header extends ImmutablePureComponent {
|
|||
}
|
||||
return data;
|
||||
})()}
|
||||
</tbody>
|
||||
</table>
|
||||
) || null}
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue