Showing
1 changed file
with
8 additions
and
6 deletions
| @@ -174,12 +174,14 @@ export struct TopNavigationComponent { | @@ -174,12 +174,14 @@ 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 | - PageComponent({ | ||
| 178 | - currentTopNavSelectedIndex: $currentTopNavSelectedIndex, | ||
| 179 | - navIndex: index, | ||
| 180 | - pageId: navItem.pageId + '', | ||
| 181 | - channelId: navItem.channelId + '' | ||
| 182 | - }) | 177 | + if(!this.isBroadcast(navItem)) { |
| 178 | + PageComponent({ | ||
| 179 | + currentTopNavSelectedIndex: $currentTopNavSelectedIndex, | ||
| 180 | + navIndex: index, | ||
| 181 | + pageId: navItem.pageId + '', | ||
| 182 | + channelId: navItem.channelId + '' | ||
| 183 | + }) | ||
| 184 | + } | ||
| 183 | } | 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)); |
-
Please register or login to post a comment