Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
cd07c3e6
Unverified
Commit
cd07c3e6
authored
Nov 26, 2019
by
Peter Holmberg
Committed by
GitHub
Nov 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix: Disable draggable panels on small devices (#20629)
* fix for draggable on mobile * elaborate in code comment
parent
514f2bea
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletions
+7
-1
public/app/features/dashboard/dashgrid/DashboardGrid.tsx
+7
-1
No files found.
public/app/features/dashboard/dashgrid/DashboardGrid.tsx
View file @
cd07c3e6
...
@@ -58,11 +58,17 @@ function GridWrapper({
...
@@ -58,11 +58,17 @@ function GridWrapper({
}
}
}
}
/*
Disable draggable if mobile device, solving an issue with unintentionally
moving panels. https://github.com/grafana/grafana/issues/18497
*/
const
draggable
=
width
<=
420
?
false
:
isDraggable
;
return
(
return
(
<
ReactGridLayout
<
ReactGridLayout
width=
{
lastGridWidth
}
width=
{
lastGridWidth
}
className=
{
className
}
className=
{
className
}
isDraggable=
{
isD
raggable
}
isDraggable=
{
d
raggable
}
isResizable=
{
isResizable
}
isResizable=
{
isResizable
}
containerPadding=
{
[
0
,
0
]
}
containerPadding=
{
[
0
,
0
]
}
useCSSTransforms=
{
false
}
useCSSTransforms=
{
false
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment