My issue lies with the mouseenter function. I am trying to display icons specific to the project name I hover over, but currently, it displays icons for all projects at once. I want each project hovered over to show me its respective icons
Below is some code: This is .ts
showIcons(project: Project) {
this.isIconsVisible = !this.isIconsVisible;
This is in html
<td (mouseenter)="showIcons()" (mouseleave)="showIcons()">
{{project.name}}
<div class ="row" *ngIf="isIconsVisible">
<div class="fa fa-edit clickable edit-icon" (click)="editProject()">
</div>
<div class="fa fa-pencil clickable fa-fw"
(click)="openprojecteditdialog(project)"></div>
<div class="fa fa-trash-o clickable delete-icon"
(click)="deleteProject(project)"></div>
<div class="fa fa-files-o clickable copy-item"
(click)="copyProject(project)"></div>
</div>