diff --git a/app/templates/components/textbox.html b/app/templates/components/textbox.html
index f895dfde6..9d032d1ca 100644
--- a/app/templates/components/textbox.html
+++ b/app/templates/components/textbox.html
@@ -41,11 +41,12 @@
' form-control-error' if field.errors else ''
)
%}
- {{ field(**{
- 'class': field_class,
- 'data-module': 'highlight-tags' if highlight_tags else '',
- 'rows': rows|string
- }) }}
+ {{ field(
+ class=field_class,
+ data_module='highlight-tags' if highlight_tags else '',
+ rows=rows|string,
+ **kwargs
+ ) }}
{% if suffix %}
{{ suffix }}
{% endif %}