Skip to content

Commit e438250

Browse files
committedAug 26, 2015
[fixed] 'isRequireForA11y' undefined/null checking
1 parent 4503869 commit e438250

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/utils/CustomPropTypes.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const CustomPropTypes = {
4444

4545
isRequiredForA11y(propType){
4646
return function(props, propName, componentName){
47-
if (props[propName] === null) {
47+
if (props[propName] == null) {
4848
return new Error(
4949
'The prop `' + propName + '` is required to make ' + componentName + ' accessible ' +
5050
'for users using assistive technologies such as screen readers `'

0 commit comments

Comments
 (0)
Please sign in to comment.