master
Tudor Stanciu 2021-04-17 22:59:42 +03:00
parent e3dc3dc18b
commit 5e7aa9bbc7
5 changed files with 5 additions and 1 deletions

View File

@ -32,6 +32,7 @@
"FullName": "Full machine name",
"Name": "Machine name",
"IP": "IP",
"MAC": "MAC address",
"Actions": {
"Wake": "Wake",
"Ping": "Ping"

View File

@ -23,6 +23,7 @@
"FullName": "Nume intreg masina",
"Name": "Nume masina",
"IP": "IP",
"MAC": "Adresa MAC",
"Actions": {
"Wake": "Pornește",
"Ping": "Ping"

View File

@ -40,6 +40,7 @@ const Machine = ({ machine, actions, logs }) => {
</TableCell>
<TableCell>{machine.machineName}</TableCell>
<TableCell>{machine.iPv4Address}</TableCell>
<TableCell>{machine.macAddress}</TableCell>
<TableCell align="right">
<>
{actions.map(action => (

View File

@ -23,6 +23,7 @@ const MachinesList = ({ dense, machines }) => {
<TableCell>{t("Machine.FullName")}</TableCell>
<TableCell>{t("Machine.Name")}</TableCell>
<TableCell>{t("Machine.IP")}</TableCell>
<TableCell>{t("Machine.MAC")}</TableCell>
<TableCell align="right" />
</TableRow>
</TableHead>

View File

@ -12,7 +12,7 @@ const NetworkContainer = () => {
return (
<div className={classes.root}>
<MachinesContainer />
<NotesContainer />
{/* <NotesContainer /> */}
</div>
);
};