We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d27510d commit 6379193Copy full SHA for 6379193
packages/core/src/js/factories/Grid.js
@@ -2476,7 +2476,7 @@ angular.module('ui.grid')
2476
else if ((pixelsToSeeRow + self.options.rowHeight) > Math.ceil(bottomBound)) {
2477
// Get the different between the bottom boundary and the required scroll position and add it to the current scroll position
2478
// plus the height of one row since scrollPixels points to the top pixel of the row
2479
- // to get the full position we need
+ // to get the full position we need
2480
scrollPixels = (pixelsToSeeRow + self.options.rowHeight) - bottomBound + self.renderContainers.body.prevScrollTop;
2481
2482
// Scroll to full position
0 commit comments