Add hex values for CAN ids

This commit is contained in:
Piotr Rogowski 2023-11-13 07:47:31 +00:00
parent f06b4b6ad9
commit 15300154d5
No known key found for this signature in database
GPG Key ID: 4A842D702D9C6F8F
1 changed files with 4 additions and 2 deletions

View File

@ -18,7 +18,7 @@ const DbcViewer = () => {
}, []);
if (!dbcData) {
return <span>Loading</span>;
return <span>Loading...</span>;
}
return (
@ -41,7 +41,9 @@ const DbcViewer = () => {
<tbody>
<tr>
<td>{message.name}</td>
<td>{message.id}</td>
<td>
{message.id} ({`0x${message.id.toString(16)}`})
</td>
<td>{message.dlc}</td>
<td>{message.sendingNode}</td>
<td>{message.description}</td>