[release] version 0.5.0-unstable14

This commit is contained in:
Yann Stepienik 2023-05-16 19:17:20 +01:00
parent dd202311ea
commit 4de4f572ea
3 changed files with 7 additions and 3 deletions

View file

@ -118,7 +118,6 @@ const GetActions = ({
/>
{!isUpdating && actions.filter((action) => {
updateAvailable = true
return action.if.includes(state) || (updateAvailable && action.if.includes('update_available'));
}).map((action) => {
return <Tooltip title={action.t}>{action.e}</Tooltip>

View file

@ -155,8 +155,13 @@ const ServeApps = () => {
</Link>
<DockerComposeImport refresh={refreshServeApps}/>
</Stack>
<Grid2 container spacing={{xs: 1, sm: 1, md: 2 }}>
{updatesAvailable && updatesAvailable.length && <Grid2 style={gridAnim} xs={12} item>
<Item>
<Alert severity="info">Update are available for {Object.keys(updatesAvailable).join(', ')}</Alert>
</Item>
</Grid2>}
{serveApps && serveApps.filter(app => search.length < 2 || app.Names[0].toLowerCase().includes(search.toLowerCase())).map((app) => {
return <Grid2 style={gridAnim} xs={12} sm={6} md={6} lg={6} xl={4} key={app.Id} item>
<Item>

View file

@ -1,6 +1,6 @@
{
"name": "cosmos-server",
"version": "0.5.0-unstable13",
"version": "0.5.0-unstable14",
"description": "",
"main": "test-server.js",
"bugs": {