Skip to content

Commit

Permalink
Info devui card uppercase card name
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Mar 4, 2025
1 parent 74d765c commit 60fbde5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export class QwcInfo extends LitElement {
for (const property of Object.keys(extInfo)){
rows.push(html`<tr><td class="row-header">${property}</td><td>${extInfo[property]}</td></tr>`);
}
cards.push(html`<qui-card header=${key}>
cards.push(html`<qui-card header=${key.charAt(0).toUpperCase() + key.slice(1)}>
<div class="cardContent" slot="content">
<vaadin-icon icon="font-awesome-solid:circle-info"></vaadin-icon>
<table class="table">
Expand Down

0 comments on commit 60fbde5

Please sign in to comment.