Skip to content

Commit

Permalink
fix: seo 🔍
Browse files Browse the repository at this point in the history
  • Loading branch information
jensmeichler committed Nov 12, 2023
1 parent 1eb8dd4 commit aaf209a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<mat-card-title *ngIf="noteList.header">
{{ noteList.header }}
</mat-card-title>
<mat-card-content (cdkDropListDropped)="dropItem($event)" [cdkDropListData]="noteList.notes" cdkDropList role="menu">
<mat-card-content (cdkDropListDropped)="dropItem($event)" [cdkDropListData]="noteList.notes" cdkDropList>
<span *ngFor="let note of noteList.notes" class="note-within-list" style="margin: 0" cdkDrag>
<cb-small-note [note]="note" [noteList]="noteList"></cb-small-note>
<cb-small-note [note]="note" [noteList]="noteList" role="menu"></cb-small-note>
<span>
<button (click)="editNote(note)" class="item-button" mat-icon-button
[attr.aria-label]="'EDIT' | translate">
Expand Down

0 comments on commit aaf209a

Please sign in to comment.