fix(lint): fix less and js linter issues

This commit is contained in:
Evan Morikawa 2016-02-24 12:31:14 -08:00
parent 6144f83834
commit 0d7d5489c6
2 changed files with 1 additions and 3 deletions

View file

@ -6,7 +6,7 @@
overflow: auto;
.btn.btn-icon {
font-size: 14px !important;
padding: 0em 0.5em;
padding: 0 0.5em;
&:first-child {
padding-left: 0.5em !important;
}

View file

@ -1,5 +1,4 @@
/** @babel */
import _ from 'underscore'
import Rx from 'rx-lite'
import React, {Component, PropTypes} from 'react'
import {DateUtils, Message, DatabaseStore} from 'nylas-exports'
@ -57,7 +56,6 @@ class SendLaterPopover extends Component {
onSelectMenuOption = (optionKey)=> {
const date = SendLaterOptions[optionKey]();
const formatted = DateUtils.format(date.utc());
this.onSelectDate(date);
};