Skip to content

Commit 942e856

Browse files
authored
fix: use correct binding for boolean attributes in Lit grid (#8334)
1 parent 4b7c160 commit 942e856

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/grid/src/vaadin-lit-grid.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ class Grid extends GridMixin(ElementMixin(ThemableMixin(PolylitMixin(LitElement)
3737
return html`
3838
<div
3939
id="scroller"
40-
safari="${isSafari}"
41-
ios="${isIOS}"
40+
?safari="${isSafari}"
41+
?ios="${isIOS}"
4242
?loading="${this.loading}"
43-
column-reordering-allowed="${this.columnReorderingAllowed}"
43+
?column-reordering-allowed="${this.columnReorderingAllowed}"
4444
?empty-state="${this.__emptyState}"
4545
>
4646
<table

0 commit comments

Comments
 (0)