fix filtering message
This commit is contained in:
parent
92ec089eab
commit
04153543a9
|
@ -129,6 +129,7 @@ export class StatusComponent implements OnInit {
|
||||||
|
|
||||||
private validateFilteringStatus(){
|
private validateFilteringStatus(){
|
||||||
const filterStatus = this.displayedStatus.filtered;
|
const filterStatus = this.displayedStatus.filtered;
|
||||||
|
|
||||||
if(!filterStatus || filterStatus.length === 0) return;
|
if(!filterStatus || filterStatus.length === 0) return;
|
||||||
|
|
||||||
// if(!this.context){
|
// if(!this.context){
|
||||||
|
@ -145,7 +146,7 @@ export class StatusComponent implements OnInit {
|
||||||
this.isContentWarned = true;
|
this.isContentWarned = true;
|
||||||
|
|
||||||
let filterTxt = `FILTERED:`;
|
let filterTxt = `FILTERED:`;
|
||||||
for(let w of filter.filter.keywords){
|
for(let w of filter.keyword_matches){
|
||||||
filterTxt += ` ${w}`;
|
filterTxt += ` ${w}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue