diff --git a/imports/ui/components/partyRsvpsList/partyRsvpsList.html b/imports/ui/components/partyRsvpsList/partyRsvpsList.html index 2e1749dae..5c24b02f3 100644 --- a/imports/ui/components/partyRsvpsList/partyRsvpsList.html +++ b/imports/ui/components/partyRsvpsList/partyRsvpsList.html @@ -1,10 +1,26 @@ -Who is coming: Yes - -{{ (partyRsvpsList.rsvps | filter:{rsvp:'yes'}).length }} -Maybe - -{{ (partyRsvpsList.rsvps | filter:{rsvp:'maybe'}).length }} -No - -{{ (partyRsvpsList.rsvps | filter:{rsvp:'no'}).length }} - - - - +
+
+
+ {{ (partyRsvpsList.rsvps | filter:{rsvp:'yes'}).length || 0 }} +
+
+ YES +
+
+
+
+ {{ (partyRsvpsList.rsvps | filter:{rsvp:'maybe'}).length || 0 }} +
+
+ MAYBE +
+
+
+
+ {{ (partyRsvpsList.rsvps | filter:{rsvp:'no'}).length || 0 }} +
+
+ NO +
+
+