add selectThumbnail component

This commit is contained in:
Travis Eden 2018-04-02 12:39:00 -04:00 committed by Sean Yesmunt
parent 96ac407b0e
commit 753fbc72a4
2 changed files with 1 additions and 2 deletions

View file

@ -389,7 +389,6 @@ class PublishForm extends React.PureComponent<Props> {
updatePublishForm={updatePublishForm} updatePublishForm={updatePublishForm}
formDisabled={formDisabled} formDisabled={formDisabled}
/> />
<p>status: {uploadThumbnailStatus}</p>
</FormRow> </FormRow>
<FormRow padded> <FormRow padded>
<FormField <FormField

View file

@ -1,6 +1,6 @@
// @flow // @flow
import { STATUSES } from 'lbry-redux';
import * as MODALS from 'constants/modal_types'; import * as MODALS from 'constants/modal_types';
import * as STATUSES from 'constants/thumbnail_upload_statuses';
import React from 'react'; import React from 'react';
import { FormField } from 'component/common/form'; import { FormField } from 'component/common/form';
import FileSelector from 'component/common/file-selector'; import FileSelector from 'component/common/file-selector';