Skip to content

Commit a0c46da

Browse files
Remove ms from order
1 parent 9bc3b37 commit a0c46da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Services/View.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ public function emptyLine(int $count = 1): void
4747

4848
protected function appendMs(array $data): array
4949
{
50-
foreach ($data as &$value) {
50+
foreach ($data as $key => &$value) {
5151
if (is_array($value)) {
5252
$value = $this->appendMs($value);
5353

5454
continue;
5555
}
5656

57-
if (is_numeric($value)) {
57+
if ($key !== '#' && is_numeric($value)) {
5858
$value = $this->round($value) . ' ms';
5959
}
6060
}

0 commit comments

Comments
 (0)