From 5341dab1027535b04aa14a8f742d9dad39eee365 Mon Sep 17 00:00:00 2001 From: Baltazar Gomez Date: Tue, 10 Oct 2017 20:04:08 -0600 Subject: [PATCH] don't show default title - fix #658 --- ui/js/component/app/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/js/component/app/view.jsx b/ui/js/component/app/view.jsx index b349fd2de..17e0ec030 100644 --- a/ui/js/component/app/view.jsx +++ b/ui/js/component/app/view.jsx @@ -39,7 +39,7 @@ class App extends React.PureComponent { } setTitleFromProps(props) { - window.document.title = props.pageTitle; + window.document.title = props.pageTitle || "LBRY"; } render() {