refactor: simplify code head generation

This commit is contained in:
Lucien Cartier-Tilet 2023-05-11 00:26:24 +02:00
parent c0b7ed4984
commit 6eb11a8e09
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 3 additions and 4 deletions

View File

@ -118,10 +118,9 @@ const simplifiedHead = [
];
let head = [];
simplifiedHead.map((tag: SimplifiedHeader) => {
let tagName = tag.tag;
tag.content.forEach((element) => {
head.push([tagName, element]);
simplifiedHead.forEach((tag) => {
tag.content.forEach((element: any) => {
head.push([tag.tag, element]);
});
});