1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-16 22:50:10 +03:00
This commit is contained in:
Sergio Betanzos 2021-06-22 09:20:04 +02:00
parent b6916de0b4
commit aa83651919
No known key found for this signature in database
GPG Key ID: E3E704F097737136
2 changed files with 5 additions and 4 deletions

View File

@ -1,18 +1,18 @@
import React, { useEffect } from 'react'
import PropTypes from 'prop-types'
import { useMarketApp, useMarketAppApi } from 'client/features/One'
import { useMarketplaceApp, useMarketplaceAppApi } from 'client/features/One'
import Search from 'client/components/Search'
import { SelectCard } from 'client/components/Cards'
const sortByID = (a, b) => a.ID - b.ID
const ListMarketApp = ({ backButton, currentValue, handleSetData }) => {
const apps = useMarketApp()
const { getMarketApps } = useMarketAppApi()
const apps = useMarketplaceApp()
const { getMarketplaceApps } = useMarketplaceAppApi()
useEffect(() => {
getMarketApps()
getMarketplaceApps()
}, [])
return (

View File

@ -27,6 +27,7 @@ export const sidebar = {
fixed: 240
}
/** @type {import('@material-ui/core').ThemeOptions} */
export default {
breakpoints: {
values: breakpoints,