diff --git a/src/blocks/filter/index.js b/src/blocks/filter/index.js index 0cb4c04..762376d 100644 --- a/src/blocks/filter/index.js +++ b/src/blocks/filter/index.js @@ -23,11 +23,26 @@ export const settings = { innerBlocks: [ { name: 'core/list', - attributes: { - values: __( - '
  • Alice.
  • The White Rabbit.
  • The Cheshire Cat.
  • ' - ), - }, + 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.' ), + }, + }, + ], }, ], },