(quickfix) Check for required fields during publishing #464
2 changed files with 4 additions and 1 deletions
|
@ -20,9 +20,10 @@ Web UI version numbers should always match the corresponding version of LBRY App
|
||||||
* Tiles will no longer be blurry on hover (Windows only bug)
|
* Tiles will no longer be blurry on hover (Windows only bug)
|
||||||
* 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
|
||||||
|
* Public page now properly checks for all required fields are filled
|
||||||
* Fixed pagination styling for pages > 5 (#416)
|
* Fixed pagination styling for pages > 5 (#416)
|
||||||
* Fixed sizing on squat videos (#419)
|
* Fixed sizing on squat videos (#419)
|
||||||
|
|
||||||
|
|
||||||
### 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…
Reference in a new issue