Skip to content

docs(ObjectPage): adjust description of onBeforeNavigate #7318

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

Merged
merged 3 commits into from
May 9, 2025
Merged
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
4 changes: 2 additions & 2 deletions packages/main/src/components/ObjectPage/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ export interface ObjectPagePropTypes extends Omit<CommonProps, 'placeholder'> {
*/
placeholder?: ReactNode;
/**
* The event is fired before the selected section is changed using the navigation. It can be aborted by the application with `preventDefault()`, which means that there will be no navigation.
* Fired when a section is selected via the tab bar, before navigation occurs. To cancel navigation, call `event.preventDefault()` within the event handler.
*
* __Note:__ This event is only fired when navigating via tab-bar.
* __Note:__ This event is fired every time a user selects a section, even if the section is already selected.
*/
onBeforeNavigate?: (event: Ui5CustomEvent<TabContainerDomRef, ObjectPageTabSelectEventDetail>) => void;
/**
Expand Down
Loading