Skip to content

Commit

Permalink
Replace qui-recycle-badge by updated default badge.
Browse files Browse the repository at this point in the history
  • Loading branch information
ueberfuhr committed Sep 5, 2024
1 parent a96b148 commit 481c94f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 174 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ InternalImportMapBuildItem createKnownInternalImportMap(NonApplicationRootPathBu
internalImportMapBuildItem.add("qwc-extension-link", contextRoot + "qwc/qwc-extension-link.js");
// Quarkus UI
internalImportMapBuildItem.add("qui-ide-link", contextRoot + "qui/qui-ide-link.js");
internalImportMapBuildItem.add("qui-recyclable-badge", contextRoot + "qui/qui-recyclable-badge.js");

// Echarts
internalImportMapBuildItem.add("echarts/", contextRoot + "echarts/");
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import '@vaadin/checkbox';
import { columnBodyRenderer } from '@vaadin/grid/lit.js';
import { gridRowDetailsRenderer } from '@vaadin/grid/lit.js';
import '@qomponent/qui-badge';
import 'qui-recyclable-badge';
import 'qui-ide-link';


Expand Down Expand Up @@ -314,9 +313,9 @@ export class QwcContinuousTesting extends QwcHotReloadElement {
_tagsRenderer(testLine){
return html`${testLine.tags.map((tag, index) => {
const color = this._tagToColor(tag);
return html`<qui-recyclable-badge small pill color="${color}" background="${color}40">
return html`<qui-badge small pill color="${color}" background="${color}40">
<span>${"io.quarkus.test.junit.QuarkusTest" === tag ? "Q" : tag}</span>
</qui-recyclable-badge> `;
</qui-badge> `;
})}`;
}

Expand Down

0 comments on commit 481c94f

Please sign in to comment.