Skip to content

Commit

Permalink
Fixes after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewserong committed Jun 5, 2023
1 parent 43ac00a commit d757a12
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/reference-guides/core-blocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ Create and save content to reuse across your site. Update the block, and the cha
Displays breadcrumbs of a page's hierarchy, or a post's categories ([Source](https://github.com/WordPress/gutenberg/tree/trunk/packages/block-library/src/breadcrumbs))

- **Name:** core/breadcrumbs
- **Experimental:** true
- **Category:** design
- **Supports:** align (full, wide), color (link, text, ~~background~~), typography (fontSize, lineHeight), ~~html~~
- **Attributes:** contentJustification, separator, showCurrentPageTitle, showLeadingSeparator, showSiteTitle, siteTitleOverride
Expand Down
3 changes: 3 additions & 0 deletions packages/block-library/src/breadcrumbs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { listView as icon } from '@wordpress/icons';
/**
* Internal dependencies
*/
import initBlock from '../utils/init-block';
import metadata from './block.json';
import edit from './edit';

Expand All @@ -16,3 +17,5 @@ export const settings = {
icon,
edit,
};

export const init = () => initBlock( { name, metadata, settings } );

0 comments on commit d757a12

Please sign in to comment.