Skip to content

Commit

Permalink
fix(Tab): fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
levithomason committed Mar 13, 2017
1 parent 54f8c7a commit f76c035
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 2 additions & 4 deletions src/modules/Tab/Tab.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,10 @@ class Tab extends Component {
})
}

getMenuProps = () => ({ attached: true, tabular: true, ...this.props.menu })

shouldMenuAttach = () => {
const { pointing, secondary, text, vertical } = this.props
const { pointing, secondary, text } = this.props

return !secondary && !pointing && !text && !vertical
return !secondary && !pointing && !text
}

renderMenu() {
Expand Down
1 change: 0 additions & 1 deletion src/modules/Tab/TabPane.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import React, { PropTypes } from 'react'
import {
createShorthandFactory,
customPropTypes,
getElementType,
getUnhandledProps,
META,
useKeyOnly,
Expand Down

0 comments on commit f76c035

Please sign in to comment.