Skip to content

Commit

Permalink
Change textarea size
Browse files Browse the repository at this point in the history
  • Loading branch information
cwetanow committed Mar 31, 2017
1 parent 3ac4cb1 commit 1c75c8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Logs.Web/Views/Shared/_CommentBoxPartial.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@using (Html.BeginForm("Comment", "Comment", FormMethod.Post))
{
@Html.AntiForgeryToken()
@Html.TextAreaFor(m => m.Content, new { @class = "form-control", rows = 5 });
@Html.TextAreaFor(m => m.Content, new { @class = "form-control", rows = 20 });
@Html.HiddenFor(m => m.LogId)
@Html.ValidationSummary()
<input type="submit" class="btn btn-primary" id="submit" value="Submit" />
Expand Down
2 changes: 1 addition & 1 deletion src/Logs.Web/Views/Shared/_NewEntryBoxPartial.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@using (Html.BeginForm("NewEntry", "Entries", FormMethod.Post))
{
@Html.AntiForgeryToken()
@Html.TextAreaFor(m => m.Content, new { @class = "form-control", rows = 5 });
@Html.TextAreaFor(m => m.Content, new { @class = "form-control", rows = 20 });
@Html.HiddenFor(m => m.LogId)
@Html.ValidationSummary()
<input type="submit" class="btn btn-primary" id="submit" value="Submit" />
Expand Down

0 comments on commit 1c75c8b

Please sign in to comment.