From 6a568669747d434cbe2e4e0d1456c002ac2358ff Mon Sep 17 00:00:00 2001 From: Ralf Ueberfuhr Date: Tue, 3 Sep 2024 08:52:01 +0200 Subject: [PATCH] Fix invalid comment --- .../resources/dev-ui/qwc/qwc-continuous-testing.js | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/extensions/vertx-http/dev-ui-resources/src/main/resources/dev-ui/qwc/qwc-continuous-testing.js b/extensions/vertx-http/dev-ui-resources/src/main/resources/dev-ui/qwc/qwc-continuous-testing.js index cc7292fc86c4a8..17b982fefb1587 100644 --- a/extensions/vertx-http/dev-ui-resources/src/main/resources/dev-ui/qwc/qwc-continuous-testing.js +++ b/extensions/vertx-http/dev-ui-resources/src/main/resources/dev-ui/qwc/qwc-continuous-testing.js @@ -307,14 +307,11 @@ export class QwcContinuousTesting extends QwcHotReloadElement { _tagsRenderer(testLine){ return html`${testLine.tags.map((tag) => { - let color = this._tagToColor(tag); - - return html` - ${"io.quarkus.test.junit.QuarkusTest" === tag ? "Q" : tag} - ` - } - )}`; + const color = this._tagToColor(tag); + return html` + ${"io.quarkus.test.junit.QuarkusTest" === tag ? "Q" : tag} + `; + })}`; } _testRenderer(testLine){