diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-22 07:13:32 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-22 07:13:32 +0300 |
commit | 44b78ff30cdab292d0e2635a28b53d9f48b2e087 (patch) | |
tree | ac84e250617c7ff1b3fd8a23970499c342dd558d /Views/Bundle/Create.cshtml | |
parent | bc1e87e4fe7d84bb747ecc358308976732503221 (diff) |
Edit input field for new bunble description
Diffstat (limited to 'Views/Bundle/Create.cshtml')
-rw-r--r-- | Views/Bundle/Create.cshtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Views/Bundle/Create.cshtml b/Views/Bundle/Create.cshtml index 4afc5e1..5197909 100644 --- a/Views/Bundle/Create.cshtml +++ b/Views/Bundle/Create.cshtml @@ -19,7 +19,7 @@ </div> <div class="form-group"> <label asp-for="Description" class="form-label">Descrition:</label> - <input asp-for="Description" class="form-control" /> + @Html.TextAreaFor(model => model.Description, new { @class="form-control", @rows = 2 }) </div> <div class="form-group"> <label asp-for="Price" class="form-label">Price:</label> |