mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-23 15:46:28 +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,
|
onSelect,
|
||||||
}) => (
|
}) => (
|
||||||
<ScrollRegion style={{ flex: 1 }} className="contacts-perspective-list">
|
<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
|
<OutlineViewItem
|
||||||
item={{
|
item={{
|
||||||
id: 'bla',
|
id: 'bla',
|
||||||
|
|
|
@ -225,7 +225,7 @@ export class OutlineView extends Component<OutlineViewProps, OutlineViewState> {
|
||||||
const allowCreate = this.props.onItemCreated != null && !collapsed;
|
const allowCreate = this.props.onItemCreated != null && !collapsed;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section className="outline-view">
|
<section className="outline-view nylas-outline-view">
|
||||||
{this._renderHeading(allowCreate, collapsed, collapsible)}
|
{this._renderHeading(allowCreate, collapsed, collapsible)}
|
||||||
{this._renderOutline(allowCreate, collapsed)}
|
{this._renderOutline(allowCreate, collapsed)}
|
||||||
</section>
|
</section>
|
||||||
|
|
Loading…
Reference in a new issue