From: みたらしだんご Date: Sat, 29 Jul 2017 12:19:49 +0000 (+0900) Subject: fix tabs_bar.js (#4436) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=a46ba4a8f56ee8b88688f904cf114c067f08a72e;p=mastodon.git fix tabs_bar.js (#4436) --- diff --git a/app/javascript/mastodon/features/ui/components/tabs_bar.js b/app/javascript/mastodon/features/ui/components/tabs_bar.js index 7e6a65cdb..e4061cdc4 100644 --- a/app/javascript/mastodon/features/ui/components/tabs_bar.js +++ b/app/javascript/mastodon/features/ui/components/tabs_bar.js @@ -48,7 +48,9 @@ export default class TabsBar extends React.Component { const nextTab = tabs.find(tab => tab.contains(e.target)); const { props: { to } } = links[Array(...this.node.childNodes).indexOf(nextTab)]; - currentTab.classList.remove('active'); + if (currentTab) { + currentTab.classList.remove('active'); + } const listener = debounce(() => { nextTab.removeEventListener('transitionend', listener);