Merge pull request #7210 from MstrVLT/Fix-Issue-#7208
fix(VirtualScroller): Typo - missing calculations for grid columnpull/6937/merge
commit
238404aa68
|
@ -469,7 +469,7 @@ export default {
|
|||
|
||||
newFirst = {
|
||||
rows: calculateFirst(currentIndex.rows, triggerIndex.rows, this.first.rows, this.last.rows, this.numItemsInViewport.rows, this.d_numToleratedItems[0], isScrollDown),
|
||||
cols: calculateFirst(currentIndex.cols, triggerIndex.cols, this.first.cols, this.last.cols, this.numItemsInViewport.cols, this.d_numToleratedItems[1], isScrollRight)
|
||||
cols: calculateFirst(currentIndex.cols, triggerIndex.cols, this.first.cols, this.last.cols, this.numItemsInViewport.cols, this.d_numToleratedItems[1], isScrollRight, true)
|
||||
};
|
||||
newLast = {
|
||||
rows: calculateLast(currentIndex.rows, newFirst.rows, this.last.rows, this.numItemsInViewport.rows, this.d_numToleratedItems[0]),
|
||||
|
|
Loading…
Reference in New Issue