- Fixed missing whitespaces

This commit is contained in:
Dave M. 2025-11-06 17:19:40 +00:00
parent 49148e87d4
commit b9416c580b

View File

@ -39,10 +39,10 @@ class Dump {
$this->trace['line'] ??= "?";
return <<<HTML
<pre style='-webkit-overflow-scrolling: touch;background-color: #f5f5f5;color: #4a4a4a;font-size: 12px;line-height:18px;overflow-x: auto;padding: 0.5rem 1.5rem;word-wrap: normal;white-space: pre-line;margin:0.33rem 0;position: relative;z-index:9999999999;'>
<details open>
<summary><span style='color:#9f9f9f;font-size:10px;' title='{$this->trace['file']}'>[ file: {$this->trace['file']}:{$this->trace['line']} ] <small>timestamp: {$this->trace['time']}</small></span> </summary>
<p>$data</p>
<pre style='-webkit-overflow-scrolling: touch;background-color: #f5f5f5;color: #4a4a4a;font-size: 12px;line-height:18px;overflow-x: auto;padding: 0.5rem 1.5rem;word-wrap: normal;white-space: pre-wrap;margin:0.33rem 0;position: relative;z-index:9999999999;'>
<details open><!--
--><summary><span style='color:#9f9f9f;font-size:10px;' title='{$this->trace['file']}'>[ file: {$this->trace['file']}:{$this->trace['line']} ] <small>timestamp: {$this->trace['time']}</small></span> </summary><!--
--><p>$data</p>
</details>
</pre>
HTML;