Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include missing attributes when upgrading embed block #33235

Merged
merged 3 commits into from
Jul 8, 2021
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
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,
ntsekouras marked this conversation as resolved.
Show resolved Hide resolved
allowResponsive,
caption,
url,
...matchedBlock.attributes,
} );
Expand Down