🐛 fix external links in sidemenu (#1720)

* fix admin link clickability

* fix bug when there are unsaved changes
This commit is contained in:
Mutasem Aldmour
2021-05-04 18:55:39 +03:00
committed by GitHub
parent 715e41b590
commit 0cb96d6caa
5 changed files with 90 additions and 57 deletions

View File

@@ -435,7 +435,7 @@ export type MenuItemPosition = 'top' | 'bottom';
export interface IMenuItem {
id: string;
type: MenuItemType;
position: MenuItemPosition;
position?: MenuItemPosition;
properties: ILinkMenuItemProperties;
}