Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
eb2ded5
Quote block: stop slash inserter popup showing in citation (#44634)
glendaviesnz Oct 3, 2022
9d1fe96
Query Loop: Fix condition for displaying 'parents' control (#44630)
Mamaduka Oct 3, 2022
7e9fd39
Hide the Classic block in the Site Editor (#44554)
michalczaplinski Sep 30, 2022
1bbc3ab
Fix navigation block console error (#44594)
talldan Sep 30, 2022
50bb90d
Remove the invalid spacing preset setting (#44555)
glendaviesnz Sep 30, 2022
2159bbb
Add box-sizing. (#44580)
ndiego Sep 29, 2022
14d6500
Remove border from Global Styles previews (#44556)
ndiego Sep 29, 2022
ad37bdd
Spacing presets: Modify the styling of the input controls when in unl…
glendaviesnz Sep 29, 2022
4a0fbe0
[TypeScript] Preserve the generic signature of getEntityRecord and ge…
adamziel Sep 27, 2022
4b92996
Theme.json: fix some outline properties doesn't work properly on the …
t-hamano Sep 28, 2022
af3f84e
Add style-engine to gutenberg tsconfig references (#44516)
Sep 27, 2022
9aaf066
[Block Library - Query Loop]: Rename Query Loop variations `allowCont…
ntsekouras Sep 28, 2022
32de2fb
Post Featured Image: Fix borders after addition of overlay feature (#…
aaronrobertshaw Sep 27, 2022
61a1bc2
Template editor: fix crashes due to undefined vars (#44482)
glendaviesnz Sep 28, 2022
add234f
Template part: prevent adding block in post editor or inside post tem…
ramonjd Sep 27, 2022
33f9e9f
Fix rotated image crop area aspect ratio (#44425)
Sep 27, 2022
1876d24
Fix padding/margin visualizer accuracy (#44485)
talldan Sep 27, 2022
a3e9d0a
PostFeaturedImage: Fix application of default border style in editor …
aaronrobertshaw Sep 28, 2022
c5b3727
Theme.json: fix some shadow properties doesn't work properly on the s…
t-hamano Sep 29, 2022
d4cb2cc
ToggleGroupControl: fix unselected icon color (#44575)
ciampo Sep 29, 2022
b3343b9
TokenInput field: try alternative approach to fix screen reader focus…
ciampo Sep 29, 2022
d8fcfec
Add layout styles from Post Content block to post editor (#44258)
tellthemachines Sep 27, 2022
baa41ca
Edit Post: Optimize legacy post content layout (#44506)
tyxla Sep 28, 2022
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
Prev Previous commit
Next Next commit
Template editor: fix crashes due to undefined vars (#44482)
  • Loading branch information
glendaviesnz authored and michalczaplinski committed Oct 3, 2022
commit 61a1bc2bbefeac4f7a5ddb2b7423a82aab1366eb
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ export default function BlockParentSelector() {
label={ sprintf(
/* translators: %s: Name of the block's parent. */
__( 'Select %s' ),
blockInformation.title
blockInformation?.title
) }
showTooltip
icon={ <BlockIcon icon={ blockInformation.icon } /> }
icon={ <BlockIcon icon={ blockInformation?.icon } /> }
/>
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ function BlockPopoverInbetween( {
forcePopoverRecompute
);
return () => {
previousElement.ownerDocument.defaultView.removeEventListener(
previousElement.ownerDocument.defaultView?.removeEventListener(
'resize',
forcePopoverRecompute
);
Expand Down