Skip to content
Closed
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 @@ -46,3 +46,7 @@
## 2026-07-05 - Accessible Disabled Buttons
**Learning:** Adding `aria-describedby` to disabled buttons and explicitly linking them to visible helper text elements allows screen readers to announce the reason for being disabled, significantly improving accessibility for interactive elements that depend on prior state (like selecting a project).
**Action:** Always pair disabled interactive elements with visible helper text and use `aria-describedby` to semantically link them, ensuring the context is available to assistive technologies.

## 2026-07-09 - [UX improvement] Accessible table-based form controls
**Learning:** In table-based forms where inputs or `<select>` elements correspond to a specific row/column property (e.g., Distinct Count, Group Assignment), the visual context or `<label>` often only provides the row identity. Always provide an explicit `aria-label` directly on the input/select to give screen readers full context (e.g., `${column.column_name} distinct count`), even if it is linked to a label via `id`.
**Action:** Add explicit `aria-label` attributes to form controls in table layouts to ensure complete context is read by screen readers.
1 change: 1 addition & 0 deletions frontend/src/components/modals/CardinalityModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ export function CardinalityModal({
</td>
<td>
<input
aria-label={`${column.column_name} distinct count`}
id={inputId}
inputMode="numeric"
min="1"
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/modals/GroupModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ export function GroupModal({
{node.data.title}
</span>
<select
aria-label={`${node.data.title} 그룹 배정`}
value={node.data.businessGroup?.id ?? ""}
onChange={(event) =>
onAssignBusinessGroup(node.id, event.target.value)
Expand Down
Loading