Fix regression in some third party themes due to outline-viw classname change

This commit is contained in:
Ben Gotow 2019-10-14 13:37:50 -05:00
parent 65435390ad
commit 32254f2de9
2 changed files with 2 additions and 2 deletions

View file

@ -171,7 +171,7 @@ const ContactsPerspectivesWithData: React.FunctionComponent<ContactsPerspectives
onSelect,
}) => (
<ScrollRegion style={{ flex: 1 }} className="contacts-perspective-list">
<section className="outline-view" style={{ paddingTop: 15 }}>
<section className="outline-view nylas-outline-view" style={{ paddingTop: 15 }}>
<OutlineViewItem
item={{
id: 'bla',

View file

@ -225,7 +225,7 @@ export class OutlineView extends Component<OutlineViewProps, OutlineViewState> {
const allowCreate = this.props.onItemCreated != null && !collapsed;
return (
<section className="outline-view">
<section className="outline-view nylas-outline-view">
{this._renderHeading(allowCreate, collapsed, collapsible)}
{this._renderOutline(allowCreate, collapsed)}
</section>