diff --git a/src-ui/src/app/components/filter-editor/filter-editor.component.html b/src-ui/src/app/components/filter-editor/filter-editor.component.html
index 19cee21c8..de65b1150 100644
--- a/src-ui/src/app/components/filter-editor/filter-editor.component.html
+++ b/src-ui/src/app/components/filter-editor/filter-editor.component.html
@@ -45,6 +45,9 @@
+
+
+
diff --git a/src-ui/src/app/components/filter-editor/filter-editor.component.ts b/src-ui/src/app/components/filter-editor/filter-editor.component.ts
index 4a5b9bd7c..a5d73a3a3 100644
--- a/src-ui/src/app/components/filter-editor/filter-editor.component.ts
+++ b/src-ui/src/app/components/filter-editor/filter-editor.component.ts
@@ -106,6 +106,11 @@ export class FilterEditorComponent implements OnInit {
this.apply.next()
}
+ clearClicked() {
+ this.ruleSet.rules.splice(0,this.ruleSet.rules.length)
+ this.apply.next()
+ }
+
ngOnInit(): void {
this.correspondentService.list().subscribe(result => {this.correspondents = result.results})
this.tagService.list().subscribe(result => this.tags = result.results)