mirror of
https://github.com/OpenNebula/one.git
synced 2025-03-16 22:50:10 +03:00
F OpenNebula/one#5422: Fix minor
This commit is contained in:
parent
b6916de0b4
commit
aa83651919
@ -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 (
|
||||
|
@ -27,6 +27,7 @@ export const sidebar = {
|
||||
fixed: 240
|
||||
}
|
||||
|
||||
/** @type {import('@material-ui/core').ThemeOptions} */
|
||||
export default {
|
||||
breakpoints: {
|
||||
values: breakpoints,
|
||||
|
Loading…
x
Reference in New Issue
Block a user