MessageDto instead of String in Event history

This commit is contained in:
Szakalakamaka
2020-11-19 11:33:54 +01:00
parent 52893c2888
commit 1a77fda308
5 changed files with 36 additions and 62 deletions

View File

@@ -111,7 +111,7 @@ function showTable() {
<td>${myList[i-1].interfaceName}</td>
</tr>
<tr bgcolor="${color}" id="etrack-tr-${j}-body" name="tr-body" hidden>
<td colspan="4">"${JSON.stringify(myList[i-1])}"</td>
<td colspan="4">"${JSON.stringify(myList[i-1].message)}"</td>
</tr>`
table.append(row)