Add Go Live to header dropdown
This commit is contained in:
parent
d6fac93d12
commit
51a940ed62
3 changed files with 6 additions and 0 deletions
|
@ -1181,6 +1181,7 @@
|
||||||
"Try out the app!": "Try out the app!",
|
"Try out the app!": "Try out the app!",
|
||||||
"Download the app to track files you've viewed and downloaded.": "Download the app to track files you've viewed and downloaded.",
|
"Download the app to track files you've viewed and downloaded.": "Download the app to track files you've viewed and downloaded.",
|
||||||
"Create a new channel": "Create a new channel",
|
"Create a new channel": "Create a new channel",
|
||||||
|
"Go Live": "Go Live",
|
||||||
"Thumbnail source": "Thumbnail source",
|
"Thumbnail source": "Thumbnail source",
|
||||||
"Cover source": "Cover source",
|
"Cover source": "Cover source",
|
||||||
"Your changes will be live in a few minutes": "Your changes will be live in a few minutes",
|
"Your changes will be live in a few minutes": "Your changes will be live in a few minutes",
|
||||||
|
|
|
@ -422,6 +422,10 @@ function HeaderMenuButtons(props: HeaderMenuButtonProps) {
|
||||||
<Icon aria-hidden icon={ICONS.CHANNEL} />
|
<Icon aria-hidden icon={ICONS.CHANNEL} />
|
||||||
{__('New Channel')}
|
{__('New Channel')}
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
|
<MenuItem className="menu__link" onSelect={() => history.push(`/$/${PAGES.GO_LIVE}`)}>
|
||||||
|
<Icon aria-hidden icon={ICONS.VIDEO} />
|
||||||
|
{__('Go Live')}
|
||||||
|
</MenuItem>
|
||||||
</MenuList>
|
</MenuList>
|
||||||
</Menu>
|
</Menu>
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -60,3 +60,4 @@ exports.BUY = 'buy';
|
||||||
exports.CHANNEL_NEW = 'channel/new';
|
exports.CHANNEL_NEW = 'channel/new';
|
||||||
exports.NOTIFICATIONS = 'notifications';
|
exports.NOTIFICATIONS = 'notifications';
|
||||||
exports.YOUTUBE_SYNC = 'youtube';
|
exports.YOUTUBE_SYNC = 'youtube';
|
||||||
|
exports.GO_LIVE = 'livestream';
|
||||||
|
|
Loading…
Reference in a new issue