Update Patternfly and Axios deps

This commit is contained in:
mabashian
2019-08-27 16:21:17 -04:00
parent 534c4e776a
commit 5f1f4bd109
60 changed files with 2881 additions and 1117 deletions

View File

@@ -24,8 +24,6 @@ describe('<NotificationTemplates />', () => {
expect(pageSections.length).toBe(2);
expect(title.length).toBe(1);
expect(title.props().size).toBe('2xl');
pageSections.forEach(section => {
expect(section.props().variant).toBeDefined();
});
expect(pageSections.first().props().variant).toBe('light');
});
});

View File

@@ -10,14 +10,14 @@ import {
class NotificationTemplates extends Component {
render() {
const { i18n } = this.props;
const { light, medium } = PageSectionVariants;
const { light } = PageSectionVariants;
return (
<Fragment>
<PageSection variant={light} className="pf-m-condensed">
<Title size="2xl">{i18n._(t`Notification Templates`)}</Title>
</PageSection>
<PageSection variant={medium} />
<PageSection />
</Fragment>
);
}