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 bf1f5ae commit 372e6cbCopy full SHA for 372e6cb
src/exceptions-table/exceptions-table.ts
@@ -89,12 +89,9 @@ export class ExceptionsTable extends LitElement {
89
<span class="badges">
90
${this.renderETPBadges(entry)}
91
${entry.filter_expression
92
- ? html`<ui-badge
93
- title="${entry.filter_expression}"
94
- @click=${() => this.onDetailClick(entry)}
95
- type="filter"
96
- >RS Filter</ui-badge
97
- >`
+ ? html`<ui-badge title="${entry.filter_expression}" type="filter">
+ <button @click=${() => this.onDetailClick(entry)}>RS Filter</button>
+ </ui-badge>`
98
: ""}
99
${entry.isPrivateBrowsingOnly != null
100
? html`<ui-badge type="private">PBM Only</ui-badge>`
0 commit comments