File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -1048,6 +1048,7 @@ class TextareaElement extends Component {
10481048 name = { this . props . name }
10491049 id = { this . props . id }
10501050 value = { this . props . value || '' }
1051+ placeholder = { this . props . placeholder }
10511052 required = { required }
10521053 disabled = { disabled }
10531054 onChange = { this . handleChange }
@@ -1063,6 +1064,7 @@ TextareaElement.propTypes = {
10631064 name : PropTypes . string . isRequired ,
10641065 label : PropTypes . string ,
10651066 value : PropTypes . string ,
1067+ placeholder : PropTypes . string ,
10661068 id : PropTypes . string ,
10671069 disabled : PropTypes . bool ,
10681070 required : PropTypes . bool ,
@@ -1075,6 +1077,7 @@ TextareaElement.defaultProps = {
10751077 name : '' ,
10761078 label : '' ,
10771079 value : '' ,
1080+ placeholder : '' ,
10781081 id : null ,
10791082 disabled : false ,
10801083 required : false ,
You can’t perform that action at this time.
0 commit comments