fixed issue where search bar was being rendered outside of channel content tab

This commit is contained in:
reece 2019-10-18 18:28:43 +01:00 committed by Sean Yesmunt
parent ea7e40f268
commit 28fe56ddf3

View file

@ -206,6 +206,8 @@ function ChannelPage(props: Props) {
<Tab disabled={editing}>{__('Content')}</Tab>
<Tab>{editing ? __('Editing Your Channel') : __('About')}</Tab>
<Tab disabled={editing}>{__('Discussion')}</Tab>
{/* only render searchbar on content page (tab index 0 === content page) */}
{tabIndex === 0 ? (
<Form onSubmit={handleSearch} className="wunderbar--channel">
<Icon icon={ICONS.SEARCH} />
<FormField
@ -216,6 +218,9 @@ function ChannelPage(props: Props) {
placeholder={__('Search')}
/>
</Form>
) : (
<div />
)}
</TabList>
<TabPanels>