From 843824bb5941f2bd8c3336569911f293adb74e12 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 23 Mar 2017 18:13:09 -0400 Subject: [PATCH] oops --- Project-Unite/Views/Shared/_Layout.cshtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Project-Unite/Views/Shared/_Layout.cshtml b/Project-Unite/Views/Shared/_Layout.cshtml index 6530022..b484e02 100644 --- a/Project-Unite/Views/Shared/_Layout.cshtml +++ b/Project-Unite/Views/Shared/_Layout.cshtml @@ -14,9 +14,9 @@ @{ string style = ""; - if(ViewBag.Model != null) + if(ViewBag.Banner != null) { - style = "background-image: url(\"" + ViewBag.Model + "\") cover;"; + style = "background-image: url(\"" + ViewBag.Banner + "\") cover;"; } }