ngx-sp-infra 6.3.0 → 6.3.1

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.
@@ -917,7 +917,6 @@ class TextFilterPipe {
917
917
  if ((!options || options.length <= 0) || !search)
918
918
  return options;
919
919
  return options.filter(e => e.LABEL.toLocaleLowerCase().includes(search.toLocaleLowerCase())
920
- || e.ID.toLocaleString().toLocaleLowerCase().includes(search.toLocaleLowerCase())
921
920
  || (e.AdditionalStringProperty1 && e.AdditionalStringProperty1.toLocaleString().toLocaleLowerCase().includes(search.toLocaleLowerCase()))
922
921
  || (e.AdditionalStringProperty2 && e.AdditionalStringProperty2.toLocaleString().toLocaleLowerCase().includes(search.toLocaleLowerCase())));
923
922
  }