Skip to content

Commit

Permalink
Change open attribute to string
Browse files Browse the repository at this point in the history
  • Loading branch information
bsingr committed Jun 19, 2020
1 parent 7cc07e1 commit f964775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/accordion-item/index.js
Expand Up @@ -84,7 +84,7 @@ export const settings = {

save({ attributes, className }) {
return (
<details open={ attributes.open }>
<details open={ attributes.open ? "yes" : "no" }>
<summary class="accordion-item-summary">
<div class="summary-content">
<RichText.Content
Expand Down

0 comments on commit f964775

Please sign in to comment.