Skip to content

Commit 5e7ed9e

Browse files
committed
[WebProfilerBundle] changed label of memory usage in time panel (Mb into MiB)
1 parent 6cdd0ae commit 5e7ed9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Resources/views/Collector/time.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class TimelineEngine {
9494

9595
createLabel(name, duration, memory, period) {
9696
const label = this.renderer.createText(name, period.start * this.scale, this.labelY, 'timeline-label');
97-
const sublabel = this.renderer.createTspan(` ${duration} ms / ${memory} Mb`, 'timeline-sublabel');
97+
const sublabel = this.renderer.createTspan(` ${duration} ms / ${memory} MiB`, 'timeline-sublabel');
9898

9999
label.appendChild(sublabel);
100100

0 commit comments

Comments
 (0)