mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 12:34:33 +01:00
Home: Avoid impossible (negative) span
This commit is contained in:
parent
9ed1ee2aa9
commit
c3b3c5ea79
@ -503,7 +503,10 @@ export class HomeApp extends EgwApp
|
||||
{
|
||||
if(col + span > maxColumn)
|
||||
{
|
||||
span = Math.min(span, (maxColumn - (parseInt(Object.keys(col_map[row]).at(-1)) || col)));
|
||||
span = Math.max(
|
||||
1,
|
||||
Math.min(span, (maxColumn - (parseInt(Object.keys(col_map[row]).at(-1)) || col)))
|
||||
);
|
||||
}
|
||||
// Set column to auto to avoid overlap
|
||||
n.style.gridColumn = "auto / span " + span;
|
||||
|
Loading…
Reference in New Issue
Block a user