Skip to content
This repository has been archived by the owner on Jul 26, 2024. It is now read-only.

Commit

Permalink
Merge branch 'fix/value-attribute-deprecated' into release/3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
admturner committed Apr 2, 2024
2 parents 1004f2d + 3648fb1 commit d80268e
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions src/blocks/filter/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,26 @@ export const settings = {
innerBlocks: [
{
name: 'core/list',
attributes: {
values: __(
'<li>Alice.</li><li>The White Rabbit.</li><li>The Cheshire Cat.</li>'
),
},
innerBlocks: [
{
name: 'core/list-item',
attributes: {
content: __( 'Alice.' ),
},
},
{
name: 'core/list-item',
attributes: {
content: __( 'The White Rabbit.' ),
},
},
{
name: 'core/list-item',
attributes: {
content: __( 'The Cheshire Cat.' ),
},
},
],
},
],
},
Expand Down

0 comments on commit d80268e

Please sign in to comment.