[Developer] #424 render probe row map values

This commit is contained in:
devmrko
2026-06-23 15:45:32 +09:00
parent 5032eed56a
commit 4c47245141

View File

@@ -48,7 +48,7 @@
</thead>
<tbody>
<tr th:each="row : ${result.rows()}">
<td th:each="column : ${result.columns()}" th:text="${row[column]}">value</td>
<td th:each="column : ${result.columns()}" th:text="${row.get(column)}">value</td>
</tr>
</tbody>
</table>