Skip to content

Commit

Permalink
closes #191
Browse files Browse the repository at this point in the history
  • Loading branch information
anshooarora committed Jul 19, 2020
1 parent 68b7dac commit 1feb1c5
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 5 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="card">
<div class="card-header">
<div class="card-title">
<div class="node">${node.name}</div>
<div class="node" id="${node.getId()}">${node.name}</div>
<div class="status-avatar float-right ${node.status.toLower()}-bg">
<i class="fa fa-${Ico.ico(node.status)} text-white"></i>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<td><span class="badge log ${test.status.toLower()}-bg">${test.status?string}</span></td>
<td>${test.startTime?string[("HH:mm:ss a")]}</td>
<td>
<a href="#" class="linked" test-id='${test.getAncestor().getId()}'>${test.name}</a>
<a href="#" class="linked" test-id='${test.getAncestor().getId()}' id='${test.getId()}'>${test.name}</a>
<#if test.parent??>
<div class="">
<span class="badge badge-default">${test.getFullName()}</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<div class="test-content-tools">
<ul>
<li>
<a class="back-to-test" href="javascript:void(0)">
<a class="back-to-test" href="#">
<i class="fa fa-arrow-left"></i>
</a>
</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<td><span class="badge log ${test.status.toLower()}-bg">${test.status?string}</span></td>
<td>${test.startTime?string[("HH:mm:ss a")]}</td>
<td>
<a href="#" class="linked" test-id='${test.getAncestor().getId()}'>${test.name}</a>
<a href="#" class="linked" test-id='${test.getAncestor().getId()}' id='${test.getId()}'>${test.name}</a>
<#if test.parent??>
<div class="">
<span class="badge badge-default">${test.parent.name}</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
resourceCDN=config.resourceCDN
cdnURI="cdn.jsdelivr.net/gh/extent-framework/extent-github-cdn@"
csscommit="5689f93cdb7cd5ee4d33d8ae2c849856b1dd42df"
jscommit="a71ba6540ef2d728c8cff34dc6e6557a9ddde07c"
jscommit="c04f361516914855e1499214d62cd80e37ff6173"
iconcommit="b00a2d0486596e73dd7326beacf352c639623a0e">
<#if resourceCDN=="extentreports">
<#assign
Expand Down

0 comments on commit 1feb1c5

Please sign in to comment.