ywana-core8 0.0.294 → 0.0.297

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.294",
3
+ "version": "0.0.297",
4
4
  "description": "ywana-core8",
5
5
  "author": "Ernesto Roldan Garcia",
6
6
  "license": "MIT",
@@ -211,7 +211,7 @@ const TableQueries = (props) => {
211
211
  const [pageContext, setPageContext] = useContext(PageContext)
212
212
 
213
213
  useEffect(() => {
214
- await pageContext.loadQueries()
214
+ pageContext.loadQueries()
215
215
  }, [])
216
216
 
217
217
 
@@ -275,7 +275,7 @@ const TableFilters = (props) => {
275
275
  <ContentEditor content={content} onChange={change} />
276
276
  </main>
277
277
  <footer>
278
- { canQuery ? <Button icon="playlist_add" label="CREAR BUSQUEDA" action={save} outlined/>}
278
+ { onSave ? <Button icon="playlist_add" label="CREAR BUSQUEDA" action={save} outlined/> : null}
279
279
  </footer>
280
280
  </Fragment>
281
281
  )