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

feat(ObjectPage): add onBeforeNavigate event #5557

Merged
merged 3 commits into from
Feb 29, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Update index.tsx
Lukas742 committed Feb 29, 2024
commit 2a7acbb20054b053ecb12c490fca193cf8bbd29a
4 changes: 2 additions & 2 deletions packages/main/src/components/ObjectPage/index.tsx
Original file line number Diff line number Diff line change
@@ -88,13 +88,13 @@ export interface ObjectPagePropTypes extends Omit<CommonProps, 'placeholder'> {
*/
children?: ObjectPageSectionType | ObjectPageSectionType[];
/**
* Set the current selected `ObjectPageSection` by `id`.
* Sets the current selected `ObjectPageSection` by `id`.
*
* __Note:__ If a valid `selectedSubSectionId` is set, this prop has no effect.
*/
selectedSectionId?: string;
/**
* Set the current selected `ObjectPageSubSection` by `id`.
* Sets the current selected `ObjectPageSubSection` by `id`.
*/
selectedSubSectionId?: string;
/**
Loading