Skip to content

Commit

Permalink
fix: use correct hidden attribute syntax in Lit version (#6631)
Browse files Browse the repository at this point in the history
  • Loading branch information
web-padawan authored Oct 11, 2023
1 parent a1c1627 commit 8f31475
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/login/src/vaadin-lit-login-overlay-wrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class LoginOverlayWrapper extends OverlayMixin(DirMixin(ThemableMixin(PolylitMix
/** @protected */
render() {
return html`
<div id="backdrop" part="backdrop" ?hidden$="${!this.withBackdrop}"></div>
<div id="backdrop" part="backdrop" ?hidden="${!this.withBackdrop}"></div>
<div part="overlay" id="overlay" tabindex="0">
<div part="content" id="content">
<section part="card">
Expand Down

0 comments on commit 8f31475

Please sign in to comment.