coer-elements 0.0.53 → 0.0.55

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.
@@ -1059,6 +1059,7 @@ class Page {
1059
1059
  if (this._source) {
1060
1060
  Breadcrumbs.RemoveLast();
1061
1061
  this.SetPageResponse(pageResponse);
1062
+ this.RemovePageFilter();
1062
1063
  Tools.Sleep().then(_ => this.router.navigateByUrl(this._source.path));
1063
1064
  }
1064
1065
  }
@@ -1086,6 +1087,11 @@ class Page {
1086
1087
  this.pageFilters = Filters.Get(this._path);
1087
1088
  }
1088
1089
  /** */
1090
+ RemovePageFilter() {
1091
+ this.pageFilters = {};
1092
+ Filters.Remove(this._path);
1093
+ }
1094
+ /** */
1089
1095
  Log(value, log = null) {
1090
1096
  if (Tools.IsNotNull(log))
1091
1097
  console.log({ log, value });