MAC
parent
e3dc3dc18b
commit
5e7aa9bbc7
|
@ -32,6 +32,7 @@
|
|||
"FullName": "Full machine name",
|
||||
"Name": "Machine name",
|
||||
"IP": "IP",
|
||||
"MAC": "MAC address",
|
||||
"Actions": {
|
||||
"Wake": "Wake",
|
||||
"Ping": "Ping"
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
"FullName": "Nume intreg masina",
|
||||
"Name": "Nume masina",
|
||||
"IP": "IP",
|
||||
"MAC": "Adresa MAC",
|
||||
"Actions": {
|
||||
"Wake": "Pornește",
|
||||
"Ping": "Ping"
|
||||
|
|
|
@ -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 => (
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -12,7 +12,7 @@ const NetworkContainer = () => {
|
|||
return (
|
||||
<div className={classes.root}>
|
||||
<MachinesContainer />
|
||||
<NotesContainer />
|
||||
{/* <NotesContainer /> */}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue