File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
src/shared/components/Settings Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -9,14 +9,14 @@ import cn from 'classnames';
99import './styles.scss' ;
1010
1111const FormInputTextArea = ( { styleName, ...props } ) => {
12- const { value } = props ;
12+ const { value, maxLength } = props ;
1313
1414 return (
1515 < div >
1616 < span styleName = "char-count" >
1717 { ( value && value . length ) || 0 }
1818 < span styleName = "grey" >
19- / 240
19+ / { maxLength }
2020 </ span >
2121 </ span >
2222 < textarea
@@ -31,11 +31,13 @@ const FormInputTextArea = ({ styleName, ...props }) => {
3131FormInputTextArea . defaultProps = {
3232 styleName : { } ,
3333 value : null ,
34+ maxLength : null ,
3435} ;
3536
3637FormInputTextArea . propTypes = {
3738 styleName : PT . shape ( ) ,
3839 value : PT . string ,
40+ maxLength : PT . string ,
3941} ;
4042
4143export default FormInputTextArea ;
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ const Learning = (props) => {
171171 styleName = "edit-text"
172172 onClick = { onHandleAddEducation }
173173 >
174- Edit Another School / Degree
174+ Edit School / Degree
175175 </ span >
176176 < span styleName = "button-cancel" >
177177 < span
You can’t perform that action at this time.
0 commit comments