Skip to content

Commit

Permalink
Merge pull request #1242 from emaceda/patch-1
Browse files Browse the repository at this point in the history
fix: CSP error in debugbar
  • Loading branch information
datamweb authored Feb 6, 2025
2 parents 79f932f + 580cd4d commit dca828a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Collectors/Auth.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public function display(): string

$html = '<h3>Current User</h3>';
$html .= '<table><tbody>';
$html .= "<tr><td style='width:150px;'>User ID</td><td>#{$user->id}</td></tr>";
$html .= "<tr><td width=\"150\">User ID</td><td>#{$user->id}</td></tr>";
$html .= "<tr><td>Username</td><td>{$user->username}</td></tr>";
$html .= "<tr><td>Email</td><td>{$user->email}</td></tr>";
$html .= "<tr><td>Groups</td><td>{$groupsForUser}</td></tr>";
Expand Down

0 comments on commit dca828a

Please sign in to comment.