Skip to content

Commit

Permalink
Merge pull request #88 from bwaidelich/87-fix-maxlength-rendering-in-…
Browse files Browse the repository at this point in the history
…textarea

BUGFIX: Fix maxlength rendering in MultiLineText
  • Loading branch information
Bastian Waidelich committed Oct 23, 2018
2 parents 5df8e93 + bcdeb8f commit 3d4bccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/Private/Form/MultiLineText.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{namespace form=Neos\Form\ViewHelpers}
<f:layout name="Neos.Form:Field" />
<f:section name="field">
<f:form.textarea property="{element.identifier}" id="{element.uniqueIdentifier}" class="{element.properties.elementClassAttribute}" additionalAttributes="{placeholder: '{element -> form:translateElementProperty(property: \'placeholder\')}'}" rows="{element.properties.rows}" cols="{element.properties.cols}" errorClass="{element.properties.elementErrorClassAttribute}" maxlength="{element.properties.maxlength}"/>
<f:form.textarea property="{element.identifier}" id="{element.uniqueIdentifier}" class="{element.properties.elementClassAttribute}" additionalAttributes="{placeholder: '{element -> form:translateElementProperty(property: \'placeholder\')}', maxlength: element.properties.maxlength}" rows="{element.properties.rows}" cols="{element.properties.cols}" errorClass="{element.properties.elementErrorClassAttribute}"/>
</f:section>

0 comments on commit 3d4bccd

Please sign in to comment.