Progress
accounts approved, video player testing, bookmark collections
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
import React from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
import { defineMessages, injectIntl } from 'react-intl'
|
||||
import ModalLayout from './modal_layout'
|
||||
import BookmarkCollectionEdit from '../../features/bookmark_collection_edit'
|
||||
|
||||
class BookmarkCollectionEditModal extends React.PureComponent {
|
||||
|
||||
render() {
|
||||
const { onClose } = this.props
|
||||
|
||||
return (
|
||||
<ModalLayout
|
||||
title='Edit Bookmark Collection'
|
||||
width={500}
|
||||
onClose={onClose}
|
||||
>
|
||||
<BookmarkCollectionEdit isModal />
|
||||
</ModalLayout>
|
||||
)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
BookmarkCollectionEditModal.propTypes = {
|
||||
onClose: PropTypes.func.isRequired,
|
||||
}
|
||||
|
||||
export default BookmarkCollectionEditModal
|
||||
@@ -164,6 +164,7 @@ class EditProfileModal extends ImmutablePureComponent {
|
||||
<Input
|
||||
id='display-name'
|
||||
title='Display name'
|
||||
maxLength={30}
|
||||
value={displayNameValue}
|
||||
onChange={this.handleDisplayNameChange}
|
||||
onBlur={this.handleDisplayNameBlur}
|
||||
@@ -176,6 +177,7 @@ class EditProfileModal extends ImmutablePureComponent {
|
||||
title='Bio'
|
||||
value={bioValue}
|
||||
disabled={false}
|
||||
maxLength={500}
|
||||
onChange={this.handleBioChange}
|
||||
placeholder='Add your bio...'
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user