Skip to content

Commit

Permalink
Include missing attributes when upgrading embed block (#33235)
Browse files Browse the repository at this point in the history
* Include missing attributes in upgraded embed block

* Update block-library changelog

* Use rest of attributes when upgrading embed block
  • Loading branch information
fluiddot authored and sarayourfriend committed Jul 15, 2021
1 parent 4e479cf commit c95825e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions packages/block-library/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
- Removes the `core/legacy-widget` block. This is now in `@wordpress/widgets`
via `registerLegacyWidgetBlock()`.

## Bug Fixes

- Include missing attributes when upgrading embed block ([#33235](https://github.com/WordPress/gutenberg/pull/33235))

## 3.2.0 (2021-05-24)

### New Features
Expand Down
4 changes: 3 additions & 1 deletion packages/block-library/src/embed/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ export const createUpgradedEmbedBlock = (
props,
attributesFromPreview = {}
) => {
const { preview, attributes: { url, providerNameSlug, type } = {} } = props;
const { preview, attributes = {} } = props;
const { url, providerNameSlug, type, ...restAttributes } = attributes;

if ( ! url || ! getBlockType( DEFAULT_EMBED_BLOCK ) ) return;

Expand All @@ -115,6 +116,7 @@ export const createUpgradedEmbedBlock = (
if ( shouldCreateNewBlock ) {
return createBlock( DEFAULT_EMBED_BLOCK, {
url,
...restAttributes,
...matchedBlock.attributes,
} );
}
Expand Down

0 comments on commit c95825e

Please sign in to comment.