Skip to content

Commit

Permalink
BUGFIX: Fix maxlength rendering in MultiLineText
Browse files Browse the repository at this point in the history
As work around before neos/flow-development-collection#1416 is
available.

Fixes: #87
  • Loading branch information
bwaidelich committed Oct 23, 2018
1 parent 5df8e93 commit bcdeb8f
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 bcdeb8f

Please sign in to comment.