Skip to content

Commit

Permalink
fix: options name
Browse files Browse the repository at this point in the history
  • Loading branch information
foxhound87 committed Feb 21, 2019
1 parent b3c2f7b commit a9bb5ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
9 changes: 1 addition & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
sudo: false
language: node_js
cache:
yarn: true
directories:
- node_modules
notifications:
email: false
node_js:
- '8'
before_install:
- npm i -g npm@^3.0.0
before_script:
- npm prune

script:
- npm run cover
- npm run coverage:check
Expand Down
2 changes: 1 addition & 1 deletion src/components/SimpleCheckbox.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ import style from '../styles/SimpleCheckbox';

export default observer(({ field }) => (
<label htmlFor={field.id} className={style.label}>
<input {...field.bind()} className={style.input} /> {field.label}
<input {...field.bind()} className={style.input} /> {field.label || field.name}
</label>
));

0 comments on commit a9bb5ce

Please sign in to comment.