File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ class ModalHeader extends React.Component {
13
13
{ this . props . closeButton &&
14
14
< button
15
15
className = 'close'
16
- aria-label = { this . props [ 'aria-label' ] || 'Close' } //eslint-disable-line react/prop-types
17
16
onClick = { this . props . onHide }
18
17
>
19
18
< span aria-hidden = "true" >
@@ -31,6 +30,11 @@ class ModalHeader extends React.Component {
31
30
ModalHeader . __isModalHeader = true ;
32
31
33
32
ModalHeader . propTypes = {
33
+ /**
34
+ * The 'aria-label' attribute is used to define a string that labels the current element.
35
+ * It is used for Assistive Technology when the label text is not visible on screen.
36
+ */
37
+ 'aria-label' : React . PropTypes . string ,
34
38
/**
35
39
* A css class applied to the Component
36
40
*/
@@ -47,6 +51,7 @@ ModalHeader.propTypes = {
47
51
} ;
48
52
49
53
ModalHeader . defaultProps = {
54
+ 'aria-label' : 'Close' ,
50
55
modalClassName : 'modal-header' ,
51
56
closeButton : false
52
57
} ;
You can’t perform that action at this time.
0 commit comments