mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-26 18:12:13 +08:00
fix(lint): fix linter errors with latest land
This commit is contained in:
parent
3dd68363b7
commit
2b253a5c4a
2 changed files with 2 additions and 8 deletions
|
@ -26,10 +26,7 @@ class DraftList extends React.Component
|
|||
resolver: (draft) =>
|
||||
<div className="participants">
|
||||
<InjectedComponent matching={role:"Participants"}
|
||||
exposedProps={
|
||||
participants: [].concat(draft.to, draft.cc, draft.bcc)
|
||||
clickable: false
|
||||
}/>
|
||||
exposedProps={participants: [].concat(draft.to, draft.cc, draft.bcc), clickable: false}/>
|
||||
</div>
|
||||
|
||||
c2 = new ListTabular.Column
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
@import "ui-variables";
|
||||
|
||||
.unsafe-component-exception {
|
||||
padding-top: @padding-base-vertical;
|
||||
padding-bottom: @padding-base-vertical;
|
||||
padding-left: @padding-base-horizontal;
|
||||
padding-right: @padding-base-horizontal;
|
||||
padding: @padding-base-vertical @padding-base-horizontal;
|
||||
|
||||
background-color: rgba(255, 0, 0, 0.1);
|
||||
color: rgba(160,50,50, 1);
|
||||
|
|
Loading…
Reference in a new issue