Added links for tv.gab.com in NavigationBar
• Added: - links for tv.gab.com in NavigationBar
This commit is contained in:
parent
f0d4e89279
commit
abbcdc21d9
|
@ -168,6 +168,7 @@ class DefaultNavigationBar extends ImmutablePureComponent {
|
|||
<NavigationBarButton title='Explore' icon='explore' to='/explore' />
|
||||
<NavigationBarButton title='News' icon='news' to='/news' />
|
||||
<NavigationBarButton title='Groups' icon='group' to='/groups' />
|
||||
<NavigationBarButton title='TV' icon='tv' href='https://tv.gab.com' />
|
||||
|
||||
<div className={[_s.d, _s.h20PX, _s.w1PX, _s.mr10, _s.ml10, _s.bgNavigationBlend].join(' ')} />
|
||||
|
||||
|
@ -237,6 +238,7 @@ class DefaultNavigationBar extends ImmutablePureComponent {
|
|||
title={action.title}
|
||||
icon={action.icon}
|
||||
to={action.to || undefined}
|
||||
href={action.href || undefined}
|
||||
onClick={action.onClick ? () => action.onClick() : undefined}
|
||||
key={`action-btn-${i}`}
|
||||
isXS
|
||||
|
|
|
@ -76,6 +76,10 @@ class HomePage extends React.PureComponent {
|
|||
page='home'
|
||||
title={title}
|
||||
actions={[
|
||||
{
|
||||
icon: 'tv',
|
||||
href: 'https://tv.gab.com',
|
||||
},
|
||||
{
|
||||
icon: 'search',
|
||||
to: '/search',
|
||||
|
|
Loading…
Reference in New Issue