mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-26 00:18:03 +02:00
updated dist
This commit is contained in:
Vendored
+2
-2
@@ -720,7 +720,7 @@
|
||||
extra_rows: 0,
|
||||
extra_cols: 0,
|
||||
min_cols: 1,
|
||||
max_cols: -1,
|
||||
max_cols: null,
|
||||
min_rows: 15,
|
||||
max_size_x: 6,
|
||||
autogenerate_stylesheet: true,
|
||||
@@ -3245,7 +3245,7 @@
|
||||
|
||||
this.cols = Math.max(min_cols, cols, this.options.min_cols);
|
||||
|
||||
if (max_cols > -1 && max_cols >= min_cols && max_cols < this.cols) {
|
||||
if (max_cols && max_cols >= min_cols && max_cols < this.cols) {
|
||||
this.cols = max_cols;
|
||||
}
|
||||
|
||||
|
||||
Vendored
+2
-2
File diff suppressed because one or more lines are too long
Vendored
+2
-2
@@ -720,7 +720,7 @@
|
||||
extra_rows: 0,
|
||||
extra_cols: 0,
|
||||
min_cols: 1,
|
||||
max_cols: -1,
|
||||
max_cols: null,
|
||||
min_rows: 15,
|
||||
max_size_x: 6,
|
||||
autogenerate_stylesheet: true,
|
||||
@@ -3245,7 +3245,7 @@
|
||||
|
||||
this.cols = Math.max(min_cols, cols, this.options.min_cols);
|
||||
|
||||
if (max_cols > -1 && max_cols >= min_cols && max_cols < this.cols) {
|
||||
if (max_cols && max_cols >= min_cols && max_cols < this.cols) {
|
||||
this.cols = max_cols;
|
||||
}
|
||||
|
||||
|
||||
+2
-2
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user