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

Navigation: Surface the associated Menu name in the List View tab #68441

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,9 @@ const MenuInspectorControls = ( props ) => {
blockEditingMode,
} = props;

const { navigationMenu } = useNavigationMenu( currentMenuId );
const menuTitle = navigationMenu?.title || __( 'Untitled menu' );

return (
<InspectorControls group="list">
<PanelBody title={ null }>
Expand All @@ -152,7 +155,7 @@ const MenuInspectorControls = ( props ) => {
className="wp-block-navigation-off-canvas-editor__title"
level={ 2 }
>
{ __( 'Menu' ) }
{ __( 'Menu' ) } ({ menuTitle })
</Heading>
{ blockEditingMode === 'default' && (
<NavigationMenuSelector
Expand Down
Loading