Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions backport-changelog/7.1/11272.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ https://github.com/WordPress/wordpress-develop/pull/11272
* https://github.com/WordPress/gutenberg/pull/76622
* https://github.com/WordPress/gutenberg/pull/76823
* https://github.com/WordPress/gutenberg/pull/76953
* https://github.com/WordPress/gutenberg/pull/76903

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In addition to listing the backport, we actually need doing the backport :) I just did.

Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,13 @@ private function get_form_for_page() {
'labelPosition' => 'none',
),
),
'excerpt',
array(
'id' => 'excerpt',
'layout' => array(
'type' => 'panel',
'labelPosition' => 'top',
),
),
array(
'id' => 'status',
'label' => __( 'Status', 'gutenberg' ),
Expand Down
2 changes: 1 addition & 1 deletion packages/fields/src/fields/excerpt/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const excerptField: Field< BasePost > = {
excerpt = decodeEntities( item.excerpt?.raw || '' );
}
return (
<Text align="left" numberOfLines={ 4 } truncate>
<Text align="left" numberOfLines={ 3 } truncate>
{ excerpt }
</Text>
);
Expand Down
Loading