{/* Inline UUID search bar is here */}
diff --git a/src/components/root/Pages/Cards.js b/src/components/root/Pages/Cards.js
index 6ebbb79..042f49e 100644
--- a/src/components/root/Pages/Cards.js
+++ b/src/components/root/Pages/Cards.js
@@ -5,11 +5,14 @@ import React, { Component } from "react";
// is referenced on Home
class Cards extends Component {
+ upcomingMig() {
+ return this.props.migs["upcoming_count"];
+ }
bookedMig() {
- return this.props.migs["booked_count"];
+ return this.props.migs["booked_count"]
}
waitingMig() {
- return this.props.migs["awaitterm_count"];
+ return this.props.migs["pendterm_count"];
}
completedMig() {
return this.props.migs["complete_count"];
@@ -25,6 +28,17 @@ class Cards extends Component {
return (
+
+
+
+
+ {this.upcomingMig()}
+
+
+
+
@@ -32,31 +46,7 @@ class Cards extends Component {
{this.bookedMig()}
-
-
-
-
-
-
-
- {this.waitingMig()}
-
-
-
-
-
-
-
-
-
- {this.completedMig()}
-
-
@@ -71,6 +61,18 @@ class Cards extends Component {
+