getredash/redash#2108 Fix: length limit increased

This commit is contained in:
Levko Kravets 2018-02-27 18:24:26 +02:00
parent bb1455ec71
commit 7d258908c6

View File

@ -2,7 +2,7 @@ const dashboardGridOptions = {
columns: 6, columns: 6,
pushing: true, pushing: true,
floating: true, floating: true,
swapping: true, swapping: false,
width: 'auto', width: 'auto',
colWidth: 'auto', colWidth: 'auto',
rowHeight: 50, rowHeight: 50,
@ -12,9 +12,9 @@ const dashboardGridOptions = {
isMobile: false, isMobile: false,
mobileBreakPoint: 800, mobileBreakPoint: 800,
mobileModeEnabled: true, mobileModeEnabled: true,
minColumns: 1, minColumns: 6,
minRows: 1, minRows: 1,
maxRows: 100, maxRows: 1000,
defaultSizeX: 3, defaultSizeX: 3,
defaultSizeY: 3, defaultSizeY: 3,
minSizeX: 1, minSizeX: 1,