diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/textarea/textarea.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/textarea/textarea.html
index ffb692ced0..51938bd676 100644
--- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/textarea/textarea.html
+++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/textarea/textarea.html
@@ -1,9 +1,9 @@
-
+
Required
{{model.count}}
characters left
-
\ No newline at end of file
+
diff --git a/src/Umbraco.Web/PropertyEditors/TextAreaPropertyEditor.cs b/src/Umbraco.Web/PropertyEditors/TextAreaPropertyEditor.cs
index 659b1b3224..5c17449df6 100644
--- a/src/Umbraco.Web/PropertyEditors/TextAreaPropertyEditor.cs
+++ b/src/Umbraco.Web/PropertyEditors/TextAreaPropertyEditor.cs
@@ -19,7 +19,10 @@ namespace Umbraco.Web.PropertyEditors
internal class TextAreaPreValueEditor : PreValueEditor
{
[PreValueField("maxChars", "Maximum allowed characters", "number", Description = "If empty - no character limit")]
- public bool MaxChars { get; set; }
+ public int MaxChars { get; set; }
+
+ [PreValueField("rows", "Number of rows", "number", Description = "If empty - 10 rows would be set as the default value")]
+ public int Rows { get; set; }
}
}
}