We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3d66fa commit 2c11912Copy full SHA for 2c11912
src/LinkDotNet.Blog.Web/Shared/Admin/CreateNewBlogPost.razor
@@ -15,8 +15,8 @@
15
</div>
16
<div class="mb-3">
17
<label for="short">Short Description</label>
18
- <input class="form-control" id="short" rows="4" value="@model.ShortDescription"
19
- @oninput="args => model.ShortDescription = args.Value.ToString()"/>
+ <textarea class="form-control" id="short" rows="4"
+ @oninput="args => model.ShortDescription = args.Value.ToString()">@model.ShortDescription</textarea>
20
<small for="short" class="form-text text-muted">You can use markdown to style your component.</small>
21
22
0 commit comments