|
@@ -27,7 +27,7 @@ const PopupCreateContent = props => {
|
27
|
27
|
<input
|
28
|
28
|
type='text'
|
29
|
29
|
className='createcontent__form__input'
|
30
|
|
- placeHolder='Nommez votre contenu...'
|
|
30
|
+ placeHolder={props.inputPlaceholder}
|
31
|
31
|
value={props.contentName}
|
32
|
32
|
onChange={props.onChangeContentName}
|
33
|
33
|
/>
|
|
@@ -64,7 +64,8 @@ PopupCreateContent.propTypes = {
|
64
|
64
|
label: PropTypes.string,
|
65
|
65
|
customColor: PropTypes.string,
|
66
|
66
|
faIcon: PropTypes.string,
|
67
|
|
- btnValidateLabel: PropTypes.string
|
|
67
|
+ btnValidateLabel: PropTypes.string,
|
|
68
|
+ inputPlaceholder: PropTypes.string
|
68
|
69
|
}
|
69
|
70
|
|
70
|
71
|
PopupCreateContent.defaultProps = {
|