Skip to content

Commit 75b086e

Browse files
committed
fixes #27
1 parent d4c136a commit 75b086e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ExtentReports/Views/Html/Partials/Head.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title>@Model.MasterConfig.GetValue("documentTitle")</title>
55
<link rel="apple-touch-icon" href="https://cdn.rawgit.com/extent-framework/extent-github-cdn/d74480e/commons/img/logo.png">
66
<link rel="shortcut icon" href="https://cdn.rawgit.com/extent-framework/extent-github-cdn/d74480e/commons/img/logo.png">
7-
<link href="https://cdn.rawgit.com/extent-framework/extent-github-cdn/1a46550/spark/css/style.css" rel="stylesheet" />
7+
<link href="https://cdn.rawgit.com/extent-framework/extent-github-cdn/bd7936f/spark/css/style.css" rel="stylesheet" />
88
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
99
<style>@Model.MasterConfig.GetValue("css") @Model.MasterConfig.GetValue("styles")</style>
1010
</head>

ExtentReports/Views/Html/Partials/RecurseNodes.cshtml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
</div>
1717
<div class="collapse">
1818
<div class="card-body">
19+
@if (!string.IsNullOrEmpty(node.Description))
20+
{
21+
<div class="description">@node.Description</div>
22+
}
1923
@if (node.HasLog)
2024
{
2125
@Include("Log", node)

0 commit comments

Comments
 (0)