Skip to content

Commit

Permalink
Fixed bug where tab bar could only exclusively show split or presenta…
Browse files Browse the repository at this point in the history
…tion icon.
  • Loading branch information
tonyanziano committed Jul 19, 2018
1 parent b483b5f commit 21980f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/app/client/src/ui/shell/multiTabs/tabBar/tabBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ class TabBarComponent extends React.Component<TabBarProps, TabBarState> {
onClick={ () => this.onPresentationModeClick() }>
</span>
);
} else if (splitEnabled) {
}
if (splitEnabled) {
widgets.push(
<span
key={ 0 }
Expand Down

0 comments on commit 21980f2

Please sign in to comment.