ywana-core8 0.0.704 → 0.0.705

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.704",
3
+ "version": "0.0.705",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -1,5 +1,5 @@
1
- import React, { useContext, useEffect, useState } from 'react'
2
- import { Icon, Tooltip } from '../html'
1
+ import React, { Fragment, useContext, useEffect, useState } from 'react'
2
+ import { Icon } from '../html'
3
3
  import { CollectionContext } from './CollectionContext'
4
4
  import { DynamicForm } from './DynamicForm'
5
5
  import './CollectionFilters.css'
@@ -54,7 +54,7 @@ const CollectionFiltersResume = (props) => {
54
54
  if (!fields.length) return null
55
55
 
56
56
  return (
57
- <>
57
+ <Fragment>
58
58
  {fields
59
59
  .filter(id => filters[id] !== undefined && filters[id] !== null && filters[id] !== "")
60
60
  .map(id => {
@@ -67,6 +67,6 @@ const CollectionFiltersResume = (props) => {
67
67
  </div>
68
68
  )
69
69
  })}
70
- </>
70
+ </Fragment>
71
71
  )
72
72
  }