Added a no_servers message to the Overview.jsx

This commit is contained in:
Mathias Wagner 2024-02-15 15:14:14 +01:00
parent 7f31910746
commit 88a72fd115
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -37,6 +37,9 @@ export const Overview = () => {
<Server key={server.uuid} uuid={server.uuid} configuration={server.configuration}
status={server.status}/>
))}
{server !== null && server.length === 0 && (
<Typography variant="body2" textAlign="center">{t("server.no_servers")}</Typography>
)}
</Stack>
</>
)