From 8f784cd7b33633d039e8a2a0a570cd7623a233a5 Mon Sep 17 00:00:00 2001
From: nathan <nathangray.bsc+github@gmail.com>
Date: Mon, 23 Aug 2021 13:09:45 -0600
Subject: [PATCH] Remove setting defaults to undefined.  It doesn't help the
 sizing issue, and it causes problems in the parent's size calculations

---
 api/js/etemplate/Et2Textarea.ts | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/api/js/etemplate/Et2Textarea.ts b/api/js/etemplate/Et2Textarea.ts
index 4edf7c012a..cb10b3b620 100644
--- a/api/js/etemplate/Et2Textarea.ts
+++ b/api/js/etemplate/Et2Textarea.ts
@@ -53,10 +53,6 @@ export class Et2Textarea extends Et2InputWidget(Et2Widget(LionTextarea))
 	constructor()
 	{
 		super();
-
-		// Unset parent's defaults
-		this.rows = undefined;
-		this.maxRows = undefined;
 	}
 
 	connectedCallback()