Skip to content

Commit

Permalink
[UI v2] fix: Fixes accessibility violations for limit details compone…
Browse files Browse the repository at this point in the history
…nt (#16653)
  • Loading branch information
devinvillarosa authored Jan 9, 2025
1 parent a982ea8 commit ff17a1c
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ export const TaskRunConcurrencyLimitDetails = ({
}: TaskRunConcurrencyLimitDetailsProps) => {
return (
<div className="flex flex-col gap-4">
<dt className="text-muted-foreground">Tag</dt>
<dd className="text-sm font-medium leading-none">{data.tag}</dd>
<dl className="flex flex-col gap-2">
<dt className="text-muted-foreground">Tag</dt>
<dd className="text-sm font-medium leading-none">{data.tag}</dd>
</dl>
<hr />
<dl className="flex flex-col gap-2">
{getKeyValueList(data).map((d) => (
Expand Down

0 comments on commit ff17a1c

Please sign in to comment.