Skip to content
Open
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
40 changes: 28 additions & 12 deletions src/app/home/states/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,18 +117,34 @@ <h2>Enrolled units</h2>
</mat-card>
</div>
</div>
<a uiSref="view-all-projects">
<button
matTooltip="View previous units"
matTooltipPosition="above"
color="primary"
mat-fab
extended
aria-label="view all projects"
>
<mat-icon style="color: white">history</mat-icon> View all
</button>
</a>
<!--Start for two buttons All for dashboard and All for all prev Units-->
<div class="flex flex-col justify-around items-start h-60">
<a uiSref="view-all-projects">
<button
matTooltip="View current units"
matTooltipPosition="above"
color="primary"
mat-fab
extended
aria-label="view all projects"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
aria-label="view all projects"
aria-label="view previous projects"

>
<mat-icon style="color: white">dashboard</mat-icon> View all
</button>
</a>
<a uiSref="view-all-projects">
<button
matTooltip="View previous units"
matTooltipPosition="above"
color="primary"
mat-fab
extended
aria-label="view previous projects"
>
<mat-icon style="color: white">history</mat-icon> View previous
</button>
</a>
</div>
<!--end here so far-->
</div>
</div>
</div>
Expand Down