Skip to content

Commit

Permalink
Double checkmark for read message
Browse files Browse the repository at this point in the history
  • Loading branch information
cremertim committed Dec 16, 2024
1 parent 22693fe commit ef89ab2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/webapp/app/shared/sidebar/sidebar.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<span jhiTranslate="artemisApp.courseOverview.sidebar.browseChannels"></span>
</button>
<button (click)="markAllMessagesAsChecked()" class="p-2" ngbDropdownItem>
<fa-icon [icon]="faCheck" class="item-icon"></fa-icon>
<fa-icon [icon]="faCheckDouble" class="item-icon"></fa-icon>
<span jhiTranslate="artemisApp.courseOverview.sidebar.setChannelAsRead"></span>
</button>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/main/webapp/app/shared/sidebar/sidebar.component.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, EventEmitter, Input, OnChanges, OnDestroy, OnInit, Output, effect, input, output } from '@angular/core';
import { faCheck, faFilter, faFilterCircleXmark, faHashtag, faPeopleGroup, faPlusCircle, faSearch, faUser } from '@fortawesome/free-solid-svg-icons';
import { faCheckDouble, faFilter, faFilterCircleXmark, faHashtag, faPeopleGroup, faPlusCircle, faSearch, faUser } from '@fortawesome/free-solid-svg-icons';
import { ActivatedRoute, Params } from '@angular/router';
import { Subscription, distinctUntilChanged } from 'rxjs';
import { ProfileService } from '../layouts/profiles/profile.service';
Expand Down Expand Up @@ -62,7 +62,7 @@ export class SidebarComponent implements OnDestroy, OnChanges, OnInit {
readonly faPlusCircle = faPlusCircle;
readonly faSearch = faSearch;
readonly faHashtag = faHashtag;
readonly faCheck = faCheck;
readonly faCheckDouble = faCheckDouble;

sidebarDataBeforeFiltering: SidebarData;

Expand Down

0 comments on commit ef89ab2

Please sign in to comment.