diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d4d54585..3e7d1e236 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Changed +- Updated lbry-sdk to [0.60.0](https://github.com/lbryio/lbry-sdk/releases/tag/v0.60.0) - Drops support for publishing anonymous comments ([#3705](https://github.com/lbryio/lbry-desktop/pull/3705)) - Don't remember past repost bid amount ([bbd263c](https://github.com/lbryio/lbry-desktop/commit/bbd263c4413935ee4fac7b7b79b7f73b42d9c1f6)) diff --git a/package.json b/package.json index abfb97b02..09960ed9e 100644 --- a/package.json +++ b/package.json @@ -69,7 +69,7 @@ "@babel/register": "^7.0.0", "@exponent/electron-cookies": "^2.0.0", "@hot-loader/react-dom": "^16.8", - "@lbry/components": "^3.0.10", + "@lbry/components": "^3.0.11", "@reach/menu-button": "^0.1.18", "@reach/rect": "^0.2.1", "@reach/tabs": "^0.1.5", diff --git a/ui/component/common/form-components/form-field.jsx b/ui/component/common/form-components/form-field.jsx index 8c2c5537b..c8b5da7c1 100644 --- a/ui/component/common/form-components/form-field.jsx +++ b/ui/component/common/form-components/form-field.jsx @@ -1,5 +1,5 @@ // @flow -import type { ElementRef } from 'react'; +import type { ElementRef, Node } from 'react'; import React from 'react'; import ReactDOMServer from 'react-dom/server'; import SimpleMDE from 'react-simplemde-editor'; @@ -10,7 +10,7 @@ import 'easymde/dist/easymde.min.css'; type Props = { name: string, - label?: string, + label?: string | Node, render?: () => React$Node, prefix?: string, postfix?: string, diff --git a/ui/component/privacyAgreement/view.jsx b/ui/component/privacyAgreement/view.jsx index dd03a655b..98953a02a 100644 --- a/ui/component/privacyAgreement/view.jsx +++ b/ui/component/privacyAgreement/view.jsx @@ -51,9 +51,10 @@ function PrivacyAgreement(props: Props) {