diff --git a/public/app/features/dashboard/dashgrid/DashboardGrid.tsx b/public/app/features/dashboard/dashgrid/DashboardGrid.tsx index 894fcbc7c23..c1738ec5088 100644 --- a/public/app/features/dashboard/dashgrid/DashboardGrid.tsx +++ b/public/app/features/dashboard/dashgrid/DashboardGrid.tsx @@ -64,8 +64,9 @@ function GridWrapper({ /* Disable draggable if mobile device, solving an issue with unintentionally moving panels. https://github.com/grafana/grafana/issues/18497 + theme.breakpoints.md = 769 */ - const draggable = width <= 420 ? false : isDraggable; + const draggable = width <= 769 ? false : isDraggable; return (