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
3 changes: 3 additions & 0 deletions .jules/palette.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,6 @@
## 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-08 - Table-based Form Accessibility
**Learning:** Table-based form inputs and selects tied to row identities often lack explicit context for screen readers when they don't have a dedicated label element.
**Action:** Always provide explicit `aria-label`s on inputs and selects inside table lists to give screen readers full context about what the element modifies.
2 changes: 2 additions & 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}
aria-label={`${column.column_name} distinct count`}
inputMode="numeric"
Expand Down Expand Up @@ -226,6 +227,7 @@ export function CardinalityModal({
onClick={() =>
onApplyCardinalityRecommendation(recommendation)
}
aria-label={`${recommendation.index_name} ์ถ”์ฒœ ${isApplied ? "์ ์šฉ๋จ" : "์ ์šฉ"}`}
>
{isApplied ? "์ ์šฉ๋จ" : "์ ์šฉ"}
</button>
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 @@ -131,6 +131,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