Skip to content

Commit

Permalink
chore(core): fix linting error part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
mportuga authored Apr 3, 2024
1 parent d27510d commit 6379193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/js/factories/Grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -2476,7 +2476,7 @@ angular.module('ui.grid')
else if ((pixelsToSeeRow + self.options.rowHeight) > Math.ceil(bottomBound)) {
// Get the different between the bottom boundary and the required scroll position and add it to the current scroll position
// plus the height of one row since scrollPixels points to the top pixel of the row
// to get the full position we need
// to get the full position we need
scrollPixels = (pixelsToSeeRow + self.options.rowHeight) - bottomBound + self.renderContainers.body.prevScrollTop;

// Scroll to full position
Expand Down

0 comments on commit 6379193

Please sign in to comment.