Skip to content

Commit

Permalink
RichRenderer: Expand minitrace when dump is expanded
Browse files Browse the repository at this point in the history
  • Loading branch information
jnvsor committed Dec 9, 2024
1 parent 371e67a commit 1d02bb2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Binary file modified build/kint.phar
Binary file not shown.
8 changes: 7 additions & 1 deletion src/Renderer/RichRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,13 @@ public function postRender(): string
return '</div>';
}

$output = '<footer>';
$output = '<footer';

if ($this->expand) {
$output .= ' class="kint-show"';
}

$output .= '>';

if (!$this->use_folder) {
$output .= '<span class="kint-folder-trigger" title="Move to folder">&mapstodown;</span>';
Expand Down

0 comments on commit 1d02bb2

Please sign in to comment.