Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: #295 move projec types at the end
  • Loading branch information
enriquezrene committed May 26, 2020
commit c35e5cb7e2d07a20fad2b6960c0f90b71ab3ea17
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,27 @@ <h4 class="navbar-brand nav-title">{{customerName}}</h4>
<li class="nav-item">
<a
class="nav-link text-black font-weight-bold"
[ngClass]="{ 'nav-active': areTabsActive, disabled: !areTabsActive, active: activeTab === 'projects-type' }"
id="projects-type-tab"
[ngClass]="{ 'nav-active': areTabsActive, disabled: !areTabsActive, active: activeTab === 'projects' }"
id="projects-tab"
data-toggle="tab"
href="#projectsType"
href="#projects"
role="tab"
aria-controls="projects-type"
(click)="showTab('projects-type')"
>Project types</a
aria-controls="projects"
(click)="showTab('projects')"
>Projects</a
>
</li>
<li class="nav-item">
<a
class="nav-link text-black font-weight-bold"
[ngClass]="{ 'nav-active': areTabsActive, disabled: !areTabsActive, active: activeTab === 'projects' }"
id="projects-tab"
[ngClass]="{ 'nav-active': areTabsActive, disabled: !areTabsActive, active: activeTab === 'projects-type' }"
id="projects-type-tab"
data-toggle="tab"
href="#projects"
href="#projectsType"
role="tab"
aria-controls="projects"
(click)="showTab('projects')"
>Projects</a
aria-controls="projects-type"
(click)="showTab('projects-type')"
>Project types</a
>
</li>
</ul>
Expand Down