fix(tui): clarify heap diagnostics
This commit is contained in:
parent
fcfb78e433
commit
2eda325c24
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ export function PerformanceDevTools() {
|
|||
},
|
||||
{ key: "Event loop max", value: `${Math.max(0, eventLoopLag).toFixed(1)} ms` },
|
||||
{ key: "RSS", value: megabytes(memory.rss) },
|
||||
{ key: "Heap", value: `${megabytes(memory.heapUsed)} / ${megabytes(memory.heapTotal)}` },
|
||||
{ key: "Heap used", value: megabytes(memory.heapUsed) },
|
||||
{ key: "Array buffers", value: megabytes(memory.arrayBuffers) },
|
||||
])
|
||||
rendering.setAll([
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue