Skip to content

Commit 8cea9c2

Browse files
authored
Merge pull request #299 from ioet/295-move-tab-at-the-end
fix: #295 move projec types at the end
2 parents 65744f6 + c35e5cb commit 8cea9c2

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/app/modules/customer-management/components/management-customer-projects/management-customer-projects.component.html

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,27 +20,27 @@ <h4 class="navbar-brand nav-title">{{customerName}}</h4>
2020
<li class="nav-item">
2121
<a
2222
class="nav-link text-black font-weight-bold"
23-
[ngClass]="{ 'nav-active': areTabsActive, disabled: !areTabsActive, active: activeTab === 'projects-type' }"
24-
id="projects-type-tab"
23+
[ngClass]="{ 'nav-active': areTabsActive, disabled: !areTabsActive, active: activeTab === 'projects' }"
24+
id="projects-tab"
2525
data-toggle="tab"
26-
href="#projectsType"
26+
href="#projects"
2727
role="tab"
28-
aria-controls="projects-type"
29-
(click)="showTab('projects-type')"
30-
>Project types</a
28+
aria-controls="projects"
29+
(click)="showTab('projects')"
30+
>Projects</a
3131
>
3232
</li>
3333
<li class="nav-item">
3434
<a
3535
class="nav-link text-black font-weight-bold"
36-
[ngClass]="{ 'nav-active': areTabsActive, disabled: !areTabsActive, active: activeTab === 'projects' }"
37-
id="projects-tab"
36+
[ngClass]="{ 'nav-active': areTabsActive, disabled: !areTabsActive, active: activeTab === 'projects-type' }"
37+
id="projects-type-tab"
3838
data-toggle="tab"
39-
href="#projects"
39+
href="#projectsType"
4040
role="tab"
41-
aria-controls="projects"
42-
(click)="showTab('projects')"
43-
>Projects</a
41+
aria-controls="projects-type"
42+
(click)="showTab('projects-type')"
43+
>Project types</a
4444
>
4545
</li>
4646
</ul>

0 commit comments

Comments
 (0)