Removed column back button from all feature component

This commit is contained in:
mgabdev
2019-07-18 23:27:07 -04:00
parent 8ccb710665
commit 9f9103b11c
12 changed files with 11 additions and 36 deletions

View File

@@ -4,7 +4,6 @@ import PropTypes from 'prop-types';
import ImmutablePropTypes from 'react-immutable-proptypes';
import LoadingIndicator from '../../components/loading_indicator';
import Column from '../ui/components/column';
import ColumnBackButtonSlim from '../../components/column_back_button_slim';
import { fetchLists } from '../../actions/lists';
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
import ImmutablePureComponent from 'react-immutable-pure-component';
@@ -60,9 +59,7 @@ class Lists extends ImmutablePureComponent {
const emptyMessage = <FormattedMessage id='empty_column.lists' defaultMessage="You don't have any lists yet. When you create one, it will show up here." />;
return (
<Column icon='list-ul' heading={intl.formatMessage(messages.heading)}>
<ColumnBackButtonSlim />
<Column icon='list-ul' heading={intl.formatMessage(messages.heading)} backBtnSlim>
<NewListForm />
<ColumnSubheading text={intl.formatMessage(messages.subheading)} />