Skip to content

Commit 4183980

Browse files
fix(frontend): remove unused data attribute
1 parent db0ba5b commit 4183980

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/frontend/components/textarea/template.njk

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
visuallyHiddenText: opts.errorMessage.visuallyHiddenText
3535
}) }}
3636
{% endif %}
37-
<textarea class="{{ classes("textarea", opts) }}" id="{{ id }}" name="{{ opts.name }}" rows="{{ opts.rows or 3 }}" data-controller="textarea"
37+
<textarea class="{{ classes("textarea", opts) }}" id="{{ id }}" name="{{ opts.name }}" rows="{{ opts.rows or 3 }}"
3838
{%- if describedBy %} aria-describedby="{{ describedBy }}"{% endif %}
3939
{%- if opts.autocomplete %} autocomplete="{{ opts.autocomplete}}"{% endif %}
4040
{{- attributes(opts.attributes) }}>{{ opts.value }}</textarea>

0 commit comments

Comments
 (0)