Skip to content

Commit

Permalink
Fix formatting for max column
Browse files Browse the repository at this point in the history
  • Loading branch information
softwarenerd committed Oct 21, 2024
1 parent 8151b04 commit d462ce7
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,9 @@ export class LayoutManager {
});

// Check if the middle layout entry contains the offset. If so, cache and return it.
if (offset >= start && offset < start + (this._layoutOverrides.get(middleIndex) ?? this._defaultSize)) {
if (offset >= start &&
offset < start + (this._layoutOverrides.get(middleIndex) ?? this._defaultSize)
) {
// Cache and return the layout entry.
return this._cachedLayoutEntry = new LayoutEntry(
middleIndex,
Expand Down

0 comments on commit d462ce7

Please sign in to comment.