diff --git a/frontend/src/container/GridCardLayout/GridCardLayout.tsx b/frontend/src/container/GridCardLayout/GridCardLayout.tsx index fa125091e6..c61fbcc7bc 100644 --- a/frontend/src/container/GridCardLayout/GridCardLayout.tsx +++ b/frontend/src/container/GridCardLayout/GridCardLayout.tsx @@ -45,6 +45,7 @@ import DashboardEmptyState from './DashboardEmptyState/DashboardEmptyState'; import GridCard from './GridCard'; import { Card, CardContainer, ReactGridLayout } from './styles'; import { removeUndefinedValuesFromLayout } from './utils'; +import { MenuItemKeys } from './WidgetHeader/contants'; import { WidgetRowHeader } from './WidgetRow'; interface GraphLayoutProps { @@ -190,7 +191,7 @@ function GraphLayout(props: GraphLayoutProps): JSX.Element { const widgetActions = !isDashboardLocked ? [...ViewMenuAction, ...EditMenuAction] - : [...ViewMenuAction]; + : [...ViewMenuAction, MenuItemKeys.CreateAlerts]; const handleLayoutChange = (layout: Layout[]): void => { const filterLayout = removeUndefinedValuesFromLayout(layout);