|
@@ -580,7 +580,9 @@ class StatTreeController extends Controller
|
|
|
$children[] = $this->lineObject($child);
|
|
|
}
|
|
|
return [
|
|
|
- "text" => '<span class="stat-tree-anchor">' . $line->displayLabel() . '</span>' .
|
|
|
+ "text" => '<span class="stat-tree-anchor">' .
|
|
|
+ '<span class="text-secondary text-sm">' . ($line->tree_order_position_index + 1) . '.</span> ' .
|
|
|
+ $line->displayLabel() . '</span>' .
|
|
|
(count($argsLabel) ? '<span class="text-info text-sm ml-2">[' . implode(', ', $argsLabel) . ']</span>' : '') .
|
|
|
'<span class="ml-2 text-secondary line-count-label">(' .
|
|
|
(is_null($line->last_refresh_count) ? '…' :
|