diff --git a/static/app-strings.json b/static/app-strings.json index fa4c6acfe..00e2141e3 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -1611,5 +1611,6 @@ "Exit Fullscreen (f)": "Exit Fullscreen (f)", "Toggle Theater mode (t)": "Toggle Theater mode (t)", "Quality": "Quality", - "--end--": "--end--" + "--end--": "--end--", + "Create A LiveStream": "Create A LiveStream", } diff --git a/ui/page/livestream/view.jsx b/ui/page/livestream/view.jsx index 192d291b0..503258e7f 100644 --- a/ui/page/livestream/view.jsx +++ b/ui/page/livestream/view.jsx @@ -10,6 +10,7 @@ import { Lbry } from 'lbry-redux'; import { toHex } from '../../util/hex'; import ClaimPreview from '../../component/claimPreview'; import { FormField } from '../../component/common/form'; +import * as PUBLISH_MODES from '../../constants/publish_types'; type Props = { channels: Array, @@ -98,7 +99,11 @@ export default function CreatorDashboardPage(props: Props) { title={__("You haven't created a channel yet, let's fix that!")} actions={
-
} /> @@ -132,9 +137,13 @@ export default function CreatorDashboardPage(props: Props) { ) : (
-
{JSON.stringify(activeChannelClaim)}
+
+ {JSON.stringify(activeChannelClaim)} +
{ sigData && -
{JSON.stringify(sigData)}
+
+ {JSON.stringify(sigData)} +
}
) @@ -151,7 +160,14 @@ export default function CreatorDashboardPage(props: Props) { ) : (
You must first publish a livestream claim before your stream will be visible!
-
TODO: add a button for this
+ + {/* Relies on https://github.com/lbryio/lbry-desktop/pull/5669 */} +
)}