@esfaenza/core 19.2.250 → 19.2.251

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1398,11 +1398,10 @@ class EntityFeedsWidgetComponent {
1398
1398
  .set("idEntityType", this.EntityType)
1399
1399
  .set("idEntity", this.EntityId);
1400
1400
  this.http.get(this.GetFeedsAPI, pars).subscribe(res => {
1401
+ this.FLAG_RefreshingFeeds = false;
1401
1402
  this.Feeds = res.filter(f => {
1402
1403
  let filter = this.FeedContentFilter?.toLowerCase();
1403
- this.FLAG_RefreshingFeeds = false;
1404
- return !filter ? true :
1405
- (f.title?.toLowerCase().includes(filter) || f.content?.toLowerCase().includes(filter) || f.user?.toLowerCase().includes(filter));
1404
+ return !filter ? true : (f.title?.toLowerCase().includes(filter) || f.content?.toLowerCase().includes(filter) || f.user?.toLowerCase().includes(filter));
1406
1405
  });
1407
1406
  });
1408
1407
  }