Hi everyone, I’m working with the following Thyme...
# intellij
d
Hi everyone, I’m working with the following Thymeleaf template:
Copy code
<th:block th:each="groupKey, tasks : ${groupedTasks}">
    <tr>
        <td th:text="${groupKey}"></td>
    </tr>

    <tr th:each="taskInfo : ${tasks}">
        <td th:text="${taskInfo.methodName}"></td>
    </tr>
</th:block>
The groupedTasks variable is of type
Map<String, List<TaskInfo>>
. The code compiles and works as expected at runtime. However, IntelliJ is showing a
cannot resolve 'taskInfo'
warning. Has anyone encountered this issue before or knows if this is a known limitation? I’m using: • IntelliJ IDEA 2025.1 (Ultimate Edition) • Build #IU-251.23774.435, built on April 14, 2025 • Runtime: OpenJDK 21.0.6+9-b895.109 (aarch64) • Kotlin plugin: K2 mode