Minor bugfix

This commit is contained in:
Andrés Uribe Stengel 2020-07-23 13:17:42 +02:00
parent f95a396440
commit 52a5752db7

View File

@ -61,7 +61,7 @@ export default function Overview() {
{configuredDevices.map((device, index) => {
return <tr key={'body' + index}>
<td key={'#-' + index}>{index}</td>
<td key={'name-' + index}>{device.deviceName}</td>
<td key={'name-' + index}>{device.deviceId}</td>
<td key={'type-' + index}>{device.type}</td>
<td key={'dirt-' + index}>{getDirt(device.type)}</td>
</tr>