diff --git a/public/app/features/dashboard/dashgrid/DashboardGrid.tsx b/public/app/features/dashboard/dashgrid/DashboardGrid.tsx index 6aea9b4ac2fa..252381314fee 100644 --- a/public/app/features/dashboard/dashgrid/DashboardGrid.tsx +++ b/public/app/features/dashboard/dashgrid/DashboardGrid.tsx @@ -241,7 +241,7 @@ export class Component extends PureComponent { // Disable draggable if mobile device, solving an issue with unintentionally // moving panels. https://github.com/grafana/grafana/issues/18497 - const isLg = width > config.theme2.breakpoints.values.md; + const isLg = width <= config.theme2.breakpoints.values.md; const draggable = isLg ? false : isEditable; return (