Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Include missing attributes in upgraded embed block
  • Loading branch information
fluiddot committed Jul 6, 2021
commit 3b08d9d39375093e7a66a23f4189ebf52914d8b3
15 changes: 14 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,17 @@ export const createUpgradedEmbedBlock = (
props,
attributesFromPreview = {}
) => {
const { preview, attributes: { url, providerNameSlug, type } = {} } = props;
const {
preview,
attributes: {
align,
allowResponsive,
caption,
url,
providerNameSlug,
type,
} = {},
} = props;

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

Expand All @@ -114,6 +124,9 @@ export const createUpgradedEmbedBlock = (
! providerNameSlug );
if ( shouldCreateNewBlock ) {
return createBlock( DEFAULT_EMBED_BLOCK, {
align,
allowResponsive,
caption,
url,
...matchedBlock.attributes,
} );
Expand Down