1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-07-25 09:45:04 +02:00

chore(dev): tweak backend-memory-report

This commit is contained in:
syuilo
2026-06-24 17:41:51 +09:00
parent 4a056bc143
commit 5ab352da11

View File

@@ -443,12 +443,10 @@ function renderJsFootprintSection(base, head) {
'',
renderJsFootprintMetricTable(base, head),
'',
'#### Load Phase Breakdown',
'',
renderJsFootprintPhaseTable(base, head),
'',
'</details>',
'',
//'#### Load Phase Breakdown',
//'',
//renderJsFootprintPhaseTable(base, head),
//'',
];
for (const block of [
@@ -461,6 +459,9 @@ function renderJsFootprintSection(base, head) {
lines.push('');
}
lines.push('</details>');
lines.push('');
return lines.join('\n');
}