ywana-core8 0.0.798 → 0.0.799

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ywana-core8",
3
- "version": "0.0.798",
3
+ "version": "0.0.799",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -24,7 +24,7 @@ export const CollectionList = (props) => {
24
24
  const searched = searchBy.length > 0 && search.length > 0 ? filtered.filter(item => {
25
25
  const text = searchBy.map(field => item[field]).join(' ').toLowerCase()
26
26
  return text.includes(search.toLowerCase())
27
- }) : all
27
+ }) : filtered
28
28
 
29
29
  const sorted = sortBy ? searched.sort((a, b) => {
30
30
  const valueA = a[sortBy]