Skip to content

Commit

Permalink
Two missing icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Elblinator committed Oct 9, 2024
1 parent e00ec02 commit 6cf1a1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[ngClass]="{ 'background-accent': meeting.isActive, 'background-dark-brighter': meeting.isArchived }"
>
<mat-card-title class="break-word">
@if (meeting.enable_anonymous) {
@if (meeting.publicAccessPossible()) {
<div class="template-indicator">
<mat-icon [matTooltip]="'Public' | translate">public</mat-icon>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ <h2>{{ 'Meetings' | translate }}</h2>
}

<!--- Is public -->
@if (meeting.enable_anonymous) {
@if (meeting.publicAccessPossible()) {
<span class="icon-prefix">
<mat-icon [matTooltip]="'Public' | translate">public</mat-icon>
</span>
Expand Down

0 comments on commit 6cf1a1e

Please sign in to comment.