Skip to content

Commit 19697d1

Browse files
committed
fixed logs
1 parent 5781de0 commit 19697d1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/ProcessLogs/ProcessLogs.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -250,10 +250,10 @@ const ProcessLogs = (): JSX.Element => {
250250
return (
251251
<tbody key={`row-${i}`}>
252252
<tr>
253-
<td>{row[i].container}</td>
254-
<td>{row[i].type}</td>
255-
<td>{row[i].time}</td>
256-
<td>{row[i].message}</td>
253+
<td>{row.container}</td>
254+
<td>{row.type}</td>
255+
<td>{row.time}</td>
256+
<td>{row.message}</td>
257257
</tr>
258258
</tbody>
259259
);

0 commit comments

Comments
 (0)