File tree 2 files changed +5
-12
lines changed
2 files changed +5
-12
lines changed Original file line number Diff line number Diff line change 1
1
<script lang =" ts" >
2
2
import { Tab , TabGroup } from ' @skeletonlabs/skeleton' ;
3
3
import PactaIntro from ' ./pacta_intro.svelte' ;
4
- import ExecutiveSummary from ' ./executive_summary.svelte' ;
5
4
import PortfolioView from ' ./portfolio_view.svelte' ;
6
5
import SectorView from ' ./sector_view.svelte' ;
7
6
import CompanyView from ' ./company_view.svelte' ;
11
10
12
11
<TabGroup >
13
12
<Tab bind:group ={tabSet } name ="pacta_intro" value ={0 }>PACTA Intro</Tab >
14
- <Tab bind:group ={tabSet } name ="executive_summary" value ={1 }>Executive Summary</Tab >
15
- <Tab bind:group ={tabSet } name ="portfolio_view" value ={2 }>Portfolio-level Overview</Tab >
16
- <Tab bind:group ={tabSet } name ="sector_view" value ={3 }>Sector-level Analysis</Tab >
17
- <Tab bind:group ={tabSet } name ="company_view" value ={4 }>Company-level Analysis</Tab >
13
+ <Tab bind:group ={tabSet } name ="portfolio_view" value ={1 }>Portfolio-level Overview</Tab >
14
+ <Tab bind:group ={tabSet } name ="sector_view" value ={2 }>Sector-level Analysis</Tab >
15
+ <Tab bind:group ={tabSet } name ="company_view" value ={3 }>Company-level Analysis</Tab >
18
16
<!-- Tab Panels --->
19
17
<svelte:fragment slot =" panel" >
20
18
{#if tabSet === 0 }
21
19
<PactaIntro />
22
20
{:else if tabSet === 1 }
23
- <ExecutiveSummary />
24
- {:else if tabSet === 2 }
25
21
<PortfolioView />
26
- {:else if tabSet === 3 }
22
+ {:else if tabSet === 2 }
27
23
<SectorView />
28
- {:else if tabSet === 4 }
24
+ {:else if tabSet === 3 }
29
25
<CompanyView />
30
26
{:else }
31
27
<p >Tab not found</p >
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments