diff --git a/src/app/components/tabview/tabview.ts b/src/app/components/tabview/tabview.ts index 41e7aacb279..05f330a08c4 100755 --- a/src/app/components/tabview/tabview.ts +++ b/src/app/components/tabview/tabview.ts @@ -809,7 +809,7 @@ export class TabView implements AfterContentInit, AfterViewChecked, OnDestroy, B const width = DomHandler.getWidth(content); this.backwardIsDisabled = scrollLeft === 0; - this.forwardIsDisabled = scrollLeft === scrollWidth - width; + this.forwardIsDisabled = Math.round(scrollLeft) === scrollWidth - width; } onScroll(event: Event) {