Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
Switch to direct Tab component import
Browse files Browse the repository at this point in the history
  • Loading branch information
mturley committed Jan 22, 2019
1 parent f89f74c commit db48bd1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/javascript/react/screens/App/Settings/Settings.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import PropTypes from 'prop-types';
import { Breadcrumb, Tabs } from 'patternfly-react';
import { Breadcrumb, Tabs, Tab } from 'patternfly-react';
import Toolbar from '../../../config/Toolbar';
import GeneralSettings from './GeneralSettings';
import ConversionHostsSettings from './ConversionHostsSettings';
Expand Down Expand Up @@ -48,12 +48,12 @@ const Settings = props => {
const tabs = (
<div style={{ marginTop: 10 }}>
<Tabs id="settings-tabs" activeKey={match.path} onSelect={key => redirectTo(key)}>
<Tabs.Tab eventKey="/settings" title={__('Concurrent Migrations')}>
<Tab eventKey="/settings" title={__('Concurrent Migrations')}>
{generalSettings}
</Tabs.Tab>
<Tabs.Tab eventKey="/settings/conversion_hosts" title={__('Conversion Hosts')}>
</Tab>
<Tab eventKey="/settings/conversion_hosts" title={__('Conversion Hosts')}>
<ConversionHostsSettings />
</Tabs.Tab>
</Tab>
</Tabs>
</div>
);
Expand Down

0 comments on commit db48bd1

Please sign in to comment.