1
0
mirror of https://github.com/NicolasConstant/sengi synced 2025-02-08 07:58:47 +01:00

removed filters on notification column

This commit is contained in:
Nicolas Constant 2019-11-20 23:04:34 -05:00
parent fb018a7a80
commit fc6d994f42
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
3 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<div class="stream-edition">
<div class="stream-edition__settings">
<div class="stream-edition__settings" *ngIf="!displayingNotifications">
<div class="stream-edition__setting">
<input [(ngModel)]="hideBoosts" (change)="settingsChanged()" class="stream-edition__setting--checkbox"
type="checkbox" id="hideBoosts"> <label for="hideBoosts" class="noselect">hide

View File

@ -21,6 +21,7 @@ export class StreamEditionComponent implements OnInit {
private init: boolean;
@Input() streamElement: StreamElement;
@Input() displayingNotifications: boolean;
@Output('closed') public closedEvent = new EventEmitter();

View File

@ -17,7 +17,8 @@
</a>
</div>
<app-stream-edition class="stream-edition" *ngIf="editionPanelIsOpen" [streamElement]="streamElement"
<app-stream-edition class="stream-edition" *ngIf="editionPanelIsOpen"
[streamElement]="streamElement" [displayingNotifications]="displayingNotifications"
(closed)="streamEditionClosed()">
</app-stream-edition>