Skip to content

Commit

Permalink
fix: use correct binding for boolean attributes in Lit grid (#8334)
Browse files Browse the repository at this point in the history
  • Loading branch information
web-padawan authored Dec 13, 2024
1 parent 4b7c160 commit 942e856
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/grid/src/vaadin-lit-grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ class Grid extends GridMixin(ElementMixin(ThemableMixin(PolylitMixin(LitElement)
return html`
<div
id="scroller"
safari="${isSafari}"
ios="${isIOS}"
?safari="${isSafari}"
?ios="${isIOS}"
?loading="${this.loading}"
column-reordering-allowed="${this.columnReorderingAllowed}"
?column-reordering-allowed="${this.columnReorderingAllowed}"
?empty-state="${this.__emptyState}"
>
<table
Expand Down

0 comments on commit 942e856

Please # to comment.