Skip to content

Commit

Permalink
Merge pull request #1694 from citizenos/#1580
Browse files Browse the repository at this point in the history
FIX #1580
  • Loading branch information
ilmartyrk authored Nov 25, 2024
2 parents 9f916e9 + 25260cc commit d7dd5be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,6 @@
</svg>
</a>
</div>
<div class="info_box" *ngIf="this.topicId">
<a (click)="app.doShowTopicNotificationSettings(this.topicId)">
<span translate="COMPONENTS.ACTIVITY_FEED.LNK_NOTIFICATION_SETTINGS"></span>
<div class="icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15 12V14L19 11.5L15 9V11H6V12H15Z" fill="#1168A8" />
</svg>
</div>
</a>
</div>
<cos-input [placeholder]="'COMPONENTS.ACTIVITY_FEED.PLACEHOLDER_FILTER' | translate"
*ngIf="!this.groupId && !this.topicId">
<div class="dropdown" [cosDropdown]>
Expand All @@ -32,7 +22,7 @@

</div>
<div class="options">
<div class="option" *ngFor="let filter of ActivityService.filters" (click)="filterActivities(filter)"
<div class="option" *ngFor="let filter of ActivityService.filters" (click)="filterActivities(filter)" (keydown)="filterActivities(filter)"
translate="COMPONENTS.ACTIVITY_FEED.FILTER_{{filter.toUpperCase()}}">
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class ActivityFeedComponent implements OnInit {
@Input() topicId?: string;
@Input() modal?: boolean;
@Input() dialogRef?: DialogRef<ActivityFeedDialogComponent>;
constructor(public ActivityService: ActivityService, private location: Location, public dialog: DialogService, public app: AppService) {
constructor(public ActivityService: ActivityService, private readonly location: Location, public dialog: DialogService, public app: AppService) {
setTimeout(() => {
this.show = true
});
Expand Down

0 comments on commit d7dd5be

Please sign in to comment.