Home: Avoid impossible (negative) span

This commit is contained in:
nathan 2023-03-08 14:06:04 -07:00
parent e7f10c711c
commit 85efe66b33

View File

@ -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;