Skip to content
This repository has been archived by the owner on Apr 30, 2018. It is now read-only.

Commit

Permalink
feat(label-wrapper): Change label to be optional
Browse files Browse the repository at this point in the history
It makes more sense for the label to be optional because there are no adverse effects by omitting it.

Closes #78
  • Loading branch information
Kent C. Dodds committed Dec 8, 2015
1 parent b78e215 commit 9197197
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wrappers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default ngModule => {
template: require('./label.html'),
apiCheck: check => ({
templateOptions: {
label: check.string,
label: check.string.optional,
required: check.bool.optional,
labelSrOnly: check.bool.optional,
}
Expand Down

0 comments on commit 9197197

Please sign in to comment.