Fix bogus css rule for owner suggestions
In change 346214 the css rule was set to
`:host[(show-suggestions)] {`
The brackets have wrong order. It must be
`:host([show-suggestions]) {`
Release-Notes: skip
Google-Bug-Id: b/258331398
Change-Id: I62c8fd6d7c684df4b9c0547d78cbfc12847ff5db
diff --git a/web/suggest-owners.ts b/web/suggest-owners.ts
index 4192b47..db61628 100644
--- a/web/suggest-owners.ts
+++ b/web/suggest-owners.ts
@@ -133,7 +133,7 @@
static override get styles() {
return [
css`
- :host[(show-suggestions)] {
+ :host([show-suggestions]) {
display: block;
background-color: var(--view-background-color);
border: 1px solid var(--view-background-color);