diff --git a/client/views/students/StudentPanelBlock.jsx b/client/views/students/StudentPanelBlock.jsx
index cb4bf1e113ca4ebe1bb3011c8374c8e3af455550..a3a82d174012f35f25027c0a6b31d71621a94856 100644
--- a/client/views/students/StudentPanelBlock.jsx
+++ b/client/views/students/StudentPanelBlock.jsx
@@ -27,11 +27,11 @@ const StudentPanelBlock = (props) => {
                     <i className="fa fa-database"></i>
                 </a>
                 {props.student.id}&emsp;
-            <span className="panel-icon">
-                    <i className="fa fa-check"></i>
-                    {/* TODO: Make icon respond to possible submissions of student */}
+                <span className="panel-icon">
+                    {props.matched ? <i className="fa fa-check" /> : null }
+                    {/* TODO: Show other submissions that student is assigned to */}
                 </span>
-                <i>assigned</i>
+                <i>{props.matched ? "matched" : ""}</i>
             </div>
 
         </div>