Skip to content

Commit

Permalink
change aria-labels to readable strings
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanalvizo committed May 12, 2023
1 parent 90227c1 commit c3ad3f1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/iris-grid/src/GotoRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function GotoRow({
}
}}
value={gotoValue}
aria-label="value-input"
aria-label="Value Input"
/>
</div>
);
Expand All @@ -180,7 +180,7 @@ function GotoRow({
defaultValue={gotoValue}
onChange={onGotoValueInputChanged}
onSubmit={handleGotoValueKeySubmit}
aria-label="value-input"
aria-label="Value Input"
/>
</div>
);
Expand Down Expand Up @@ -228,7 +228,7 @@ function GotoRow({
placeholder="value"
onChange={e => onGotoValueInputChanged(e.target.value)}
value={gotoValue}
aria-label="value-input"
aria-label="Value Input"
/>
</div>
</>
Expand All @@ -242,7 +242,7 @@ function GotoRow({
onGotoValueInputChanged(event.target.value);
}}
value={gotoValue}
aria-label="value-input"
aria-label="Value Input"
>
<option aria-label="null value" key="null" value="" />
<option key="true" value="true">
Expand All @@ -264,7 +264,7 @@ function GotoRow({
placeholder="value"
onChange={e => onGotoValueInputChanged(e.target.value)}
value={gotoValue}
aria-label="value-input"
aria-label="Value Input"
/>
</div>
);
Expand Down

0 comments on commit c3ad3f1

Please sign in to comment.