mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-22 15:15:12 +08:00
Fix regression in some third party themes due to outline-viw classname change
This commit is contained in:
parent
65435390ad
commit
32254f2de9
2 changed files with 2 additions and 2 deletions
|
@ -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',
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue