Check for required fields during publishing
This commit is contained in:
parent
5aa28433bf
commit
bd11952d41
2 changed files with 3 additions and 0 deletions
|
@ -21,6 +21,7 @@ Web UI version numbers should always match the corresponding version of LBRY App
|
||||||
* Removed placeholder values from price selection form fields, which was causing confusion that these were real values (#426)
|
* Removed placeholder values from price selection form fields, which was causing confusion that these were real values (#426)
|
||||||
* Fixed showing "other currency" help tip in publish form, which was caused due to not "setting" state for price
|
* Fixed showing "other currency" help tip in publish form, which was caused due to not "setting" state for price
|
||||||
* Now using setState in formFieldPrice
|
* Now using setState in formFieldPrice
|
||||||
|
* Fixed a bug which enabled the user to publish without filling/checking required fields
|
||||||
*
|
*
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
|
|
@ -564,6 +564,7 @@ class PublishForm extends React.PureComponent {
|
||||||
: <div>
|
: <div>
|
||||||
<div className="card__content">
|
<div className="card__content">
|
||||||
<FormRow
|
<FormRow
|
||||||
|
ref="meta_title"
|
||||||
label={__("Title")}
|
label={__("Title")}
|
||||||
type="text"
|
type="text"
|
||||||
name="title"
|
name="title"
|
||||||
|
@ -844,6 +845,7 @@ class PublishForm extends React.PureComponent {
|
||||||
</div>
|
</div>
|
||||||
<div className="card__content">
|
<div className="card__content">
|
||||||
<FormRow
|
<FormRow
|
||||||
|
ref="tosAgree"
|
||||||
label={
|
label={
|
||||||
<span>
|
<span>
|
||||||
{__("I agree to the")}
|
{__("I agree to the")}
|
||||||
|
|
Loading…
Add table
Reference in a new issue