Skip to content

Commit

Permalink
Drop the aria-live attribute from text area
Browse files Browse the repository at this point in the history
It's no longer recommended by the design system as of v4.1.0

https://github.com/alphagov/govuk-frontend/releases/tag/v4.1.0
  • Loading branch information
peteryates committed May 18, 2022
1 parent 8e4ab0e commit 5fe14e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/govuk_design_system_formbuilder/elements/text_area.rb
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def limit_type
def limit_description
return unless limit?

tag.span(id: limit_id, class: limit_description_classes, aria: { live: 'polite' }) do
tag.span(id: limit_id, class: limit_description_classes) do
"You can enter up to #{limit_quantity} #{limit_type}"
end
end
Expand Down

0 comments on commit 5fe14e4

Please sign in to comment.