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

Commit 04df99d

Browse files
luisvtKent C. Dodds
authored andcommitted
fix: change boolean to bool (#113)
change `boolean` to `bool` to correct next error: ``` TypeError: Cannot read property 'optional' of undefined ```
1 parent 5eb2073 commit 04df99d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types/select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default ngModule => {
2828
labelProp: check.string.optional,
2929
valueProp: check.string.optional,
3030
groupProp: check.string.optional,
31-
notNull: check.boolean.optional,
31+
notNull: check.bool.optional,
3232
nullDisplay: check.string.optional
3333
}
3434
})

0 commit comments

Comments
 (0)