Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

Commit

Permalink
Undo accidentally committed commenting
Browse files Browse the repository at this point in the history
  • Loading branch information
ockham committed Jun 16, 2022
1 parent afe04dd commit 10eea93
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/gutenberg-packages/frontend.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ class GutenbergBlock extends HTMLElement {
const context = pickKeys( event.detail.context, usesContext );

const blockType = this.getAttribute( 'data-gutenberg-block-type' );
const blockProps = JSON.parse(
this.getAttribute( 'data-gutenberg-block-props' ),
);
// const blockProps = {
// className: this.children[0].className,
// style: this.children[0].style,
// };
// const blockProps = JSON.parse(
// this.getAttribute( 'data-gutenberg-block-props' ),
// );
const blockProps = {
className: this.children[0].className,
style: this.children[0].style,
};

const innerBlocks = this.querySelector(
'template.gutenberg-inner-blocks',
Expand Down

0 comments on commit 10eea93

Please sign in to comment.