Skip to content

Commit

Permalink
Corrected unescaped quotes. Fixes this issue #76 (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
GaryTsang authored Apr 19, 2024
1 parent 47c9fc1 commit 1e5d5f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/assets/report/index.pug
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ html
tbody
each execution, index in suite.executions
tr(class="test-row")
td(class=`${execution.status} caps` colspan="100%" onclick='toggleElement("' + execution._id + '"); this.classList.toggle("opened");')= `Test: ${execution.title}`
td(class=`${execution.status} caps` colspan="100%" onclick=`toggleElement("' + execution._id + '"); this.classList.toggle("opened");`)= `Test: ${execution.title}`
tr(class="actions-row" id=`${execution._id}` style={ display: "none" })
td(colspan="100%")
table(class="actions-table")
Expand Down

0 comments on commit 1e5d5f9

Please sign in to comment.