Showing
1 changed file
with
2 additions
and
0 deletions
| @@ -174,6 +174,7 @@ export struct TopNavigationComponent { | @@ -174,6 +174,7 @@ export struct TopNavigationComponent { | ||
| 174 | Tabs({controller: this.controller}) { | 174 | Tabs({controller: this.controller}) { |
| 175 | ForEach(this.myChannelList, (navItem: TopNavDTO, index: number) => { | 175 | ForEach(this.myChannelList, (navItem: TopNavDTO, index: number) => { |
| 176 | TabContent() { | 176 | TabContent() { |
| 177 | + if(!this.isBroadcast(navItem)) { | ||
| 177 | PageComponent({ | 178 | PageComponent({ |
| 178 | currentTopNavSelectedIndex: $currentTopNavSelectedIndex, | 179 | currentTopNavSelectedIndex: $currentTopNavSelectedIndex, |
| 179 | navIndex: index, | 180 | navIndex: index, |
| @@ -181,6 +182,7 @@ export struct TopNavigationComponent { | @@ -181,6 +182,7 @@ export struct TopNavigationComponent { | ||
| 181 | channelId: navItem.channelId + '' | 182 | channelId: navItem.channelId + '' |
| 182 | }) | 183 | }) |
| 183 | } | 184 | } |
| 185 | + } | ||
| 184 | .tabBar(this.tabBarBuilder(navItem, index)) | 186 | .tabBar(this.tabBarBuilder(navItem, index)) |
| 185 | }, (navItem: TopNavDTO) => JSON.stringify(navItem)); | 187 | }, (navItem: TopNavDTO) => JSON.stringify(navItem)); |
| 186 | } | 188 | } |
-
Please register or login to post a comment