diff --git a/src/App.vue b/src/App.vue index fa3f523..3f4ce79 100644 --- a/src/App.vue +++ b/src/App.vue @@ -117,13 +117,14 @@ let focus, blur, tokenRefresh mounted() { let getToken = (trig) => { console.log('token trigger', trig) - if (this.$firebase.currentUser) { + if (this.$firebase.auth().currentUser) { this.$firebase.auth().currentUser.getIdToken(/* forceRefresh */ true).then((idToken) => { this.$store.commit("token", idToken) - }) + } else { + } } diff --git a/src/views/Review.vue b/src/views/Review.vue index c3d9afe..eb27029 100644 --- a/src/views/Review.vue +++ b/src/views/Review.vue @@ -21,7 +21,8 @@
{{app.firstName}} {{app.lastName}}
{{app.application.school? app.application.school : app.application.company}}
{{app.role}}
@@ -56,31 +57,41 @@Questions
Experience Attending Hackathons: {{focusedApp.application.expAttending}}
-Experience Mentoring or Judging Hackathons: {{focusedApp.application.expMentoringJudging}}
-Experience Working with High School Students: {{focusedApp.application.expWorkingWithStudents}}
+Experience Mentoring or Judging Hackathons: {{focusedApp.application.expMentoringJudging}} +
+Experience Working with High School Students: {{focusedApp.application.expWorkingWithStudents}} +
Areas of expertise: {{focusedApp.application.areasOfExpertise}}
Why do you want to attend?: {{focusedApp.application.whyDoYouWantToAttend}}
-Experience with software development: {{focusedApp.application.experienceSoftware}}
-Experience with hardware development: {{focusedApp.application.experienceHardware}}
-Experience with hackathons: {{focusedApp.application.experienceHackathon}}
-Experience with team coding: {{focusedApp.application.experienceTeamCoding}}
-Description of computer science experience: {{focusedApp.application.descriptionCompSciExp}}
+Why do you want to attend?: {{focusedApp.application.whyDoYouWantToAttend}} +
+Experience with software development: + {{focusedApp.application.experienceSoftware}}
+Experience with hardware development: + {{focusedApp.application.experienceHardware}}
+Experience with hackathons: {{focusedApp.application.experienceHackathon}} +
+Experience with team coding: {{focusedApp.application.experienceTeamCoding}} +
+Description of computer science experience: {{focusedApp.application.descriptionCompSciExp}} +
Coming with team: {{focusedApp.application.team? "Yes" : "No"}}
Logistics
-Laptop: {{focusedApp.application.laptop? "Yes" : "No"}}
+Laptop: {{focusedApp.application.laptop? "Yes" : "No"}} +
Food Allergies: {{objList(focusedApp.application.foodAllergies)}}
-Dietary Restrictions: {{objList(focusedApp.application.dietaryRestrictions)}}
+Dietary Restrictions: {{objList(focusedApp.application.dietaryRestrictions)}} +
Accommodations: {{focusedApp.application.accommodations}}
Shirt Size: {{focusedApp.application.shirtSize}}
Referrers: {{objList(focusedApp.application.referrers)}}
Comments: {{focusedApp.application.comments}}