From fd455f69ae6ecb8aad5b52e0d631a98cd9714cee Mon Sep 17 00:00:00 2001 From: Diana Davis Date: Thu, 29 Mar 2018 13:51:25 -0400 Subject: [PATCH] Oops! Realized why there was gray text in TODO #1. Fixed it. --- src/TechJobs/Controllers/JobController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TechJobs/Controllers/JobController.cs b/src/TechJobs/Controllers/JobController.cs index 299e3f8c..8930781a 100644 --- a/src/TechJobs/Controllers/JobController.cs +++ b/src/TechJobs/Controllers/JobController.cs @@ -23,7 +23,7 @@ public IActionResult Index(int id) Job someJob = jobData.Find(id); - return View(); + return View(someJob); } public IActionResult New()