summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-03-23 19:37:36 -0400
committerMichael <[email protected]>2017-03-23 19:37:36 -0400
commitca0d3dd81ac7107e57a25c0fd8e2b61bb11c5199 (patch)
treef3aab84437f5dfa4409bd967614e3ffff79cefa3
parent1d4e39678fd3ff0ad27887768a75a95894be3053 (diff)
downloadproject-unite-ca0d3dd81ac7107e57a25c0fd8e2b61bb11c5199.tar.gz
project-unite-ca0d3dd81ac7107e57a25c0fd8e2b61bb11c5199.tar.bz2
project-unite-ca0d3dd81ac7107e57a25c0fd8e2b61bb11c5199.zip
I forgot the glyphicon class..
-rw-r--r--Project-Unite/Views/Profiles/ViewProfile.cshtml4
1 files changed, 2 insertions, 2 deletions
diff --git a/Project-Unite/Views/Profiles/ViewProfile.cshtml b/Project-Unite/Views/Profiles/ViewProfile.cshtml
index b208d01..bee2ed9 100644
--- a/Project-Unite/Views/Profiles/ViewProfile.cshtml
+++ b/Project-Unite/Views/Profiles/ViewProfile.cshtml
@@ -45,8 +45,8 @@
dislikeLink = likeLink.Replace("Like", "Dislike");
}
}
- <li><a href="@likeLink"><span class="glyphicon-thumbs-up"></span> @post.Likes.Length</a></li>
- <li><a href="@dislikeLink"><span class="glyphicon-thumbs-down"></span> @post.Dislikes.Length</a></li>
+ <li><a href="@likeLink"><span class="glyphicon glyphicon-thumbs-up"></span> @post.Likes.Length</a></li>
+ <li><a href="@dislikeLink"><span class="glyphicon glyphicon-thumbs-down"></span> @post.Dislikes.Length</a></li>
</ul>
</div>