We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bb42ac commit 0c4d687Copy full SHA for 0c4d687
1 file changed
packages/comment-widget/src/commenter-ua-bar.ts
@@ -68,7 +68,11 @@ export class CommenterUABar extends LitElement {
68
const browser = this.parser.getBrowser();
69
70
if (!os.name && !browser.name) {
71
- return html``;
+ return html`
72
+ <div class="inline-flex items-center gap-1 bg-muted-3 rounded-base px-1.5 py-1">
73
+ <span class="text-xs text-text-3">${this.ua}</span>
74
+ </div>
75
+ `;
76
}
77
78
const osIcon = this.getOSIcon(os?.name);
0 commit comments