Full path of logs on hover

This commit is contained in:
2022-06-13 13:30:51 +02:00
parent 3c57b44d8f
commit 4546532e68

View File

@@ -30,7 +30,7 @@ function MainSide() {
setLogTable(logListName.map((log, index) => {
return <tr key={index}>
<td>{log}</td>
<td title={logList[index]}>{log}</td>
</tr>
}));
}, [logs]);