Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion WebLoader/Nette/Diagnostics/Panel.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ private function getTable()
});

return $latte->renderToString(__DIR__ . '/panel.latte', array(
'files' => $this->files,
'filesArr' => $this->files,
'sizes' => $this->sizes,
'size' => $this->size
));
Expand Down
2 changes: 1 addition & 1 deletion WebLoader/Nette/Diagnostics/panel.latte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h1>WebLoader</h1>
<div class="tracy-inner">
<table style="min-width: 400px; margin-bottom: 10px;" n:foreach="$files as $group => $extensions">
<table style="min-width: 400px; margin-bottom: 10px;" n:foreach="$filesArr as $group => $extensions">
<thead>
<tr>
<th style="font-size: 1.1em;">{$group}</th>
Expand Down