Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lvarayut committed Nov 25, 2017
1 parent 67d9b31 commit 904d83e
Show file tree
Hide file tree
Showing 5 changed files with 7,508 additions and 2,146 deletions.
4 changes: 3 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
"import/no-dynamic-require": 0,
"class-methods-use-this": 0,
"function-paren-newline": 0,
"react/jsx-no-bind": 0,
"react/prefer-stateless-function": 0,
"react/jsx-filename-extension": 0,
"react/forbid-prop-types": 0
"react/forbid-prop-types": 0,
"jsx-a11y/anchor-is-valid": 0
}
}
2 changes: 1 addition & 1 deletion client/components/Feature/AddFeatureComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default class AddFeature extends React.Component {
}

addFeature = () => {
const value = this.state.form.dropdown.value;
const { value } = this.state.form.dropdown;
if (value === 'none') {
return;
}
Expand Down
Loading

0 comments on commit 904d83e

Please sign in to comment.