mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-31 09:21:27 +00:00
fix settings bug and update changelog
This commit is contained in:
parent
86ead993e0
commit
8f1e2ea72b
2 changed files with 5 additions and 5 deletions
|
@ -8,16 +8,16 @@ Web UI version numbers should always match the corresponding version of LBRY App
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Added
|
### Added
|
||||||
*
|
* Added new window menu options for reloading and help.
|
||||||
*
|
*
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
*
|
*
|
||||||
|
* Replaced all instances of `XMLHttpRequest` with native `Fetch` API.
|
||||||
*
|
*
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
*
|
* Fixed console errors on settings page related to improper React input properties.
|
||||||
*
|
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
*
|
*
|
||||||
|
|
|
@ -237,7 +237,7 @@ class SettingsPage extends React.PureComponent {
|
||||||
<FormRow
|
<FormRow
|
||||||
type="radio"
|
type="radio"
|
||||||
name="instant_purchase_max"
|
name="instant_purchase_max"
|
||||||
checked={!instantPurchaseEnabled}
|
defaultChecked={!instantPurchaseEnabled}
|
||||||
label={__("Ask for confirmation of all purchases")}
|
label={__("Ask for confirmation of all purchases")}
|
||||||
onClick={e => {
|
onClick={e => {
|
||||||
this.onInstantPurchaseEnabledChange(false);
|
this.onInstantPurchaseEnabledChange(false);
|
||||||
|
@ -247,7 +247,7 @@ class SettingsPage extends React.PureComponent {
|
||||||
<FormField
|
<FormField
|
||||||
type="radio"
|
type="radio"
|
||||||
name="instant_purchase_max"
|
name="instant_purchase_max"
|
||||||
checked={instantPurchaseEnabled}
|
defaultChecked={instantPurchaseEnabled}
|
||||||
label={
|
label={
|
||||||
"Single-click purchasing of content less than" +
|
"Single-click purchasing of content less than" +
|
||||||
(instantPurchaseEnabled ? "" : "...")
|
(instantPurchaseEnabled ? "" : "...")
|
||||||
|
|
Loading…
Add table
Reference in a new issue