Showing
1 changed file
with
1 additions
and
1 deletions
| @@ -98,7 +98,7 @@ export struct TopNavigationComponent { | @@ -98,7 +98,7 @@ export struct TopNavigationComponent { | ||
| 98 | } | 98 | } |
| 99 | .width('100%') | 99 | .width('100%') |
| 100 | .height(40) | 100 | .height(40) |
| 101 | - .visibility(this._currentNavIndex != 2 ? Visibility.Visible : Visibility.None) | 101 | + .visibility(this._currentNavIndex == 0 ? Visibility.Visible : Visibility.None) |
| 102 | 102 | ||
| 103 | Tabs() { | 103 | Tabs() { |
| 104 | ForEach(this.topNavList, (navItem: TopNavDTO, index: number) => { | 104 | ForEach(this.topNavList, (navItem: TopNavDTO, index: number) => { |
-
Please register or login to post a comment