bugfix subcategory
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-03-24 23:08:05 +11:00
parent a3de1b2b03
commit 6389f53ae3
2 changed files with 4 additions and 4 deletions

View File

@@ -20,7 +20,7 @@ type IncidentRow struct {
AssignmentGroup string
AssignedTo string
Category string
Subcategory string
SubCategory string
SysID string
}
@@ -71,7 +71,7 @@ templ IncidentsTable(rows []IncidentRow) {
<td>{ row.AssignmentGroup }</td>
<td>{ row.AssignedTo }</td>
<td>{ row.Category }</td>
<td>{ row.Subcategory }</td>
<td>{ row.SubCategory }</td>
</tr>
}
</tbody>