Skip to content

Commit

Permalink
Update CrashReportHtml.Html.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Aragas authored Apr 7, 2024
1 parent 5525438 commit ef4b134
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BUTR.CrashReport.Renderer.Html/CrashReportHtml.Html.cs
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ private static string ContainerCodeNew(string id, string name, string content, b

private static string Container(string id, string name, string content, bool hide = false) => $"""
<div class='root-container' {(hide ? "style='display: none;'" : string.Empty)}>
<h2><a href='javascript:;' class='headers' onclick='showHideById(this, '{id}')'>+ {name}</a></h2>
<h2><a href='javascript:;' class='headers' onclick='showHideById(this, "{id}")'>+ {name}</a></h2>
<div id='{id}' class='headers-container'>
{content}
</div>
Expand All @@ -317,4 +317,4 @@ private static string ContainerCode(string id, string name, string content, bool
</div>
""";
#pragma warning disable format // @formatter:on
}
}

0 comments on commit ef4b134

Please sign in to comment.