Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .Jules/palette.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@
## 2026-02-15 - [Semantic Form Labels]
**Learning:** Even with clear visual labels, missing `for` attributes on `<label>` elements prevents proper association with inputs for assistive technologies.
**Action:** Explicitly link labels and inputs using `for` and `id` attributes in all form components.

## 2026-03-01 - [Table Row Selection for Client-side Sorting]
**Learning:** Generic `tr` selectors in client-side sorting and filtering scripts can cause functional regressions when feedback rows (like "No results found") are added to the table body. These rows are incorrectly included in sorts, appearing in random positions.
**Action:** Always use specific selectors like `.data-row` for data-related iterations to isolate metadata or feedback rows.
Loading