You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to report a bug in "slide.ts". The next and previous arrows should be shown if there are two or more slides. Instead, arrows are only shown if there are three or more slides due to the following line in "slide.ts".
It's an easy fix, but I thought that others may run into this issue as well. My settings are cellWidth='100%', [lightDOM]='true' and [overflowCellsLimit]='1' for showing one slide at a time with one slide being lazy loaded in the background. Hope this helps. Thank you.
The text was updated successfully, but these errors were encountered:
I would like to report a bug in "slide.ts". The next and previous arrows should be shown if there are two or more slides. Instead, arrows are only shown if there are three or more slides due to the following line in "slide.ts".
isNextArrowDisabled() {
return this.isLastSlide(this.counter) ||
(!this.visibleCellsOverflowContainer && this.cellLength <= this.numberOfVisibleCells) ||
(this.visibleCellsOverflowContainer && this.cellLength < this.numberOfVisibleCells)
}
isNextArrowDisabled() {
return this.isLastSlide(this.counter) ||
(!this.visibleCellsOverflowContainer && this.cellLength < this.numberOfVisibleCells) ||
(this.visibleCellsOverflowContainer && this.cellLength < this.numberOfVisibleCells)
}
It's an easy fix, but I thought that others may run into this issue as well. My settings are cellWidth='100%', [lightDOM]='true' and [overflowCellsLimit]='1' for showing one slide at a time with one slide being lazy loaded in the background. Hope this helps. Thank you.
The text was updated successfully, but these errors were encountered: