Skip to content

Commit

Permalink
Fix invalid comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ueberfuhr committed Sep 5, 2024
1 parent d5c493f commit 6a56866
Showing 1 changed file with 5 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -307,14 +307,11 @@ export class QwcContinuousTesting extends QwcHotReloadElement {

_tagsRenderer(testLine){
return html`${testLine.tags.map((tag) => {
let color = this._tagToColor(tag);
<!-- style="color:${color};background-color:${color}40" -->
return html`<qui-badge small pill color="${color}" background="${color}40"
aria-label="${tag}" title="${tag}">
<span>${"io.quarkus.test.junit.QuarkusTest" === tag ? "Q" : tag}</span>
</qui-badge> `
}
)}`;
const color = this._tagToColor(tag);
return html`<qui-badge small pill color="${color}" background="${color}40">
<span>${"io.quarkus.test.junit.QuarkusTest" === tag ? "Q" : tag}</span>
</qui-badge> `;
})}`;
}

_testRenderer(testLine){
Expand Down

0 comments on commit 6a56866

Please sign in to comment.