diff options
| author | Michael <[email protected]> | 2017-05-31 19:23:00 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-05-31 19:23:00 -0400 |
| commit | c8eccc638bed1d37e726650914e7f303fd16ae71 (patch) | |
| tree | f42e9ceeb957468d61205c1767dfcc924683b0d2 | |
| parent | b83a26c5a0095b89f0de48b5ec243fd2f727baec (diff) | |
| download | project-unite-c8eccc638bed1d37e726650914e7f303fd16ae71.tar.gz project-unite-c8eccc638bed1d37e726650914e7f303fd16ae71.tar.bz2 project-unite-c8eccc638bed1d37e726650914e7f303fd16ae71.zip | |
fix bug with quote submission
| -rw-r--r-- | Project-Unite/Views/Quotes/Index.cshtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Project-Unite/Views/Quotes/Index.cshtml b/Project-Unite/Views/Quotes/Index.cshtml index 4bea2d6..ee365a9 100644 --- a/Project-Unite/Views/Quotes/Index.cshtml +++ b/Project-Unite/Views/Quotes/Index.cshtml @@ -31,7 +31,7 @@ <dt>Year</dt> <dd>@Html.TextBoxFor(Model=>Model.Year, new { @type = "number", @class = "form-control" })</dd> <dt>Quote body</dt> - <dd>@Html.TextAreaFor(Model => Model.AuthorId, new { @class = "form-control" })</dd> + <dd>@Html.TextAreaFor(Model => Model.Body, new { @class = "form-control" })</dd> </dl> <input type="submit" value="Submit!" class="btn btn-primary" /> |
