Skip to content

Commit

Permalink
#454 fixed tooltip and minor clarifications by adding labels
Browse files Browse the repository at this point in the history
  • Loading branch information
sauterl committed Jan 10, 2024
1 parent e959b77 commit dc4a2e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

<p class="flex flex-row content-between align-stretch">
<mat-form-field class="flex-100">
<mat-label>Task group</mat-label>
<mat-select
[placeholder]="'Task Group'"
[formControl]="form.get('taskGroup')"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ <h2>Tasks</h2>
<button mat-icon-button aria-label="Edit task." matTooltip="Edit task." (click)="editTask(task)">
<mat-icon>edit</mat-icon>
</button>
<button mat-icon-button aria-label="Remove task." matTooltip="Remove task." (click)="copyTask(task)">
<button mat-icon-button aria-label="Copy task." matTooltip="Copy task." (click)="copyTask(task)">
<mat-icon>content_copy</mat-icon>
</button>
<button mat-icon-button aria-label="Remove task." matTooltip="Remove task." (click)="removeTask(task)">
Expand Down

0 comments on commit dc4a2e2

Please sign in to comment.