Added a no_servers message to the Overview.jsx
This commit is contained in:
parent
7f31910746
commit
88a72fd115
@ -37,6 +37,9 @@ export const Overview = () => {
|
|||||||
<Server key={server.uuid} uuid={server.uuid} configuration={server.configuration}
|
<Server key={server.uuid} uuid={server.uuid} configuration={server.configuration}
|
||||||
status={server.status}/>
|
status={server.status}/>
|
||||||
))}
|
))}
|
||||||
|
{server !== null && server.length === 0 && (
|
||||||
|
<Typography variant="body2" textAlign="center">{t("server.no_servers")}</Typography>
|
||||||
|
)}
|
||||||
</Stack>
|
</Stack>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user