Skip to content

Commit

Permalink
Align exception header properly (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek authored Apr 8, 2020
1 parent 7999f76 commit 8d908fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ExceptionRenderer/HTML.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ protected function processStackTrace(): void
$this->output .= '
<table class="ui very compact small selectable table">
<thead><tr><th colspan="3">Stack Trace</th></tr></thead>
<thead><tr><th>#</th><th>File</th><th>Object</th><th>Method</th></tr></thead>
<thead><tr><th style="text-align:right">#</th><th>File</th><th>Object</th><th>Method</th></tr></thead>
<tbody>
';

Expand All @@ -123,7 +123,7 @@ protected function processStackTrace(): void

protected function processStackTraceInternal(): void
{
$text = '
$text = '
<tr class="{CSS_CLASS}">
<td style="text-align:right">{INDEX}</td>
<td>{FILE_LINE}</td>
Expand Down

0 comments on commit 8d908fd

Please sign in to comment.