Skip to content

Commit

Permalink
fix(ui5-side-navigation): fix private types
Browse files Browse the repository at this point in the history
  • Loading branch information
TeodorTaushanov committed Jan 22, 2024
1 parent e501c85 commit e968e19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/fiori/src/SideNavigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,21 @@ type SideNavigationPopoverContents = {
};

type SideNavigationSelectionChangeEventDetail = {
item: SideNavigationItemBase;
item: SideNavigationItemBase,
};

// used for the inner side navigation used in the SideNavigationPopoverTemplate
type PopupClickEventDetail = {
target: {
associatedItem: SideNavigationItemBase
associatedItem: SideNavigationItemBase,
}
};

// used for the inner side navigation used in the SideNavigationPopoverTemplate
type NavigationMenuClickEventDetail = {
detail: {
item: {
associatedItem: SideNavigationItemBase
associatedItem: SideNavigationItemBase,
}
}
};
Expand Down

0 comments on commit e968e19

Please sign in to comment.