summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-05-31 19:23:00 -0400
committerMichael <[email protected]>2017-05-31 19:23:00 -0400
commitc8eccc638bed1d37e726650914e7f303fd16ae71 (patch)
treef42e9ceeb957468d61205c1767dfcc924683b0d2
parentb83a26c5a0095b89f0de48b5ec243fd2f727baec (diff)
downloadproject-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.cshtml2
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" />