Skip to content

Commit

Permalink
Removing nbsp
Browse files Browse the repository at this point in the history
  • Loading branch information
fdodino committed Jun 21, 2024
1 parent 9e17867 commit 3e71231
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/app/tareas/tareas.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
display: none;
}

td > button {
margin: 0 0.25rem;
}

/* .desktop {
display: inherit;
} */
Expand Down
2 changes: 0 additions & 2 deletions src/app/tareas/tareas.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,13 @@
<fa-icon icon="calendar-check"></fa-icon>
</button>
}
&nbsp;
@if (tarea.sePuedeAsignar()) {
<button id="asignarModal" type="button" title="Asignar una persona" class="btn btn-success"
(click)="asignar(tarea)" aria-label="Asignarme"
[attr.data-testid]="'asignar_' + tarea.id">
<fa-icon icon="user-check"></fa-icon>
</button>
}
&nbsp;
@if (tarea.sePuedeDesasignar()) {
<button type="button" title="Desasignar la persona a la tarea" class="btn btn-danger"
(click)="desasignar(tarea)" aria-label="Desasignarme"
Expand Down

0 comments on commit 3e71231

Please sign in to comment.