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:
parent
fb018a7a80
commit
fc6d994f42
@ -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
|
||||
|
@ -21,6 +21,7 @@ export class StreamEditionComponent implements OnInit {
|
||||
private init: boolean;
|
||||
|
||||
@Input() streamElement: StreamElement;
|
||||
@Input() displayingNotifications: boolean;
|
||||
|
||||
@Output('closed') public closedEvent = new EventEmitter();
|
||||
|
||||
|
@ -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>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user