diff --git a/components/tabs/Tabs.js b/components/tabs/Tabs.js index 6d5fb4d2..603c6799 100644 --- a/components/tabs/Tabs.js +++ b/components/tabs/Tabs.js @@ -59,8 +59,6 @@ const factory = (Tab, TabContent, FontIcon) => { if (index !== prevIndex || children !== prevChildren) { this.updatePointer(index); } - - this.updateArrows(); } componentWillUnmount() { @@ -107,18 +105,13 @@ const factory = (Tab, TabContent, FontIcon) => { const scrollLeft = this.navigationNode.scrollLeft; const nav = this.navigationNode.getBoundingClientRect(); const lastLabel = this.navigationNode.children[idx].getBoundingClientRect(); - const left = scrollLeft > 0; - const right = nav.right < (lastLabel.right - 5); - const { left: prevLeft, right: prevRight } = this.state.arrows; - if (left !== prevLeft || right !== prevRight) { - this.setState({ - arrows: { - left, - right, - }, - }); - } + this.setState({ + arrows: { + left: scrollLeft > 0, + right: nav.right < (lastLabel.right - 5), + }, + }); } }