In Blazor I want to add the maxlength attribute to an input like
<textarea type="text" name="TheNameOfMyField"
class="TheNameOfMyClass" value="" rows="2" maxlength="255">
</textarea>
The component in Blazor is like this one
<InputTextArea @bind-Value="_model.ShortDescription"
class="form-control" id="gapShortDescription" />
and there is no options for maxlength or custom HTML attributes.
How can I do that?