From 46d18a642c6690e1848d159d9e353af315d3d154 Mon Sep 17 00:00:00 2001 From: Cody Date: Sat, 21 Oct 2023 10:32:01 -0700 Subject: [PATCH] Rows property set to no default --- Oqtane.Shared/Models/Profile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Oqtane.Shared/Models/Profile.cs b/Oqtane.Shared/Models/Profile.cs index 4198ab56..336cd262 100644 --- a/Oqtane.Shared/Models/Profile.cs +++ b/Oqtane.Shared/Models/Profile.cs @@ -77,6 +77,6 @@ namespace Oqtane.Models /// /// Optional number of rows (textarea) /// - public int Rows { get; set; } = 1; + public int Rows { get; set; } } }