[WebProfilerBundle] changed label of memory usage in time panel (Mb into MiB)

This commit is contained in:
Loïc Beurlet 2020-05-26 14:58:50 +02:00
parent a4f8a49e94
commit a91204a79d
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class TimelineEngine {
createLabel(name, duration, memory, period) {
const label = this.renderer.createText(name, period.start * this.scale, this.labelY, 'timeline-label');
const sublabel = this.renderer.createTspan(` ${duration} ms / ${memory} Mb`, 'timeline-sublabel');
const sublabel = this.renderer.createTspan(` ${duration} ms / ${memory} MiB`, 'timeline-sublabel');
label.appendChild(sublabel);