diff --git a/index.html b/index.html index d5061da..c7b4ad2 100644 --- a/index.html +++ b/index.html @@ -16,7 +16,8 @@ ` - + + diff --git a/package.json b/package.json index 6b86439..ac8b5c5 100644 --- a/package.json +++ b/package.json @@ -36,6 +36,7 @@ "vue-social-sharing": "^2.4.7", "vue-star-rating": "^1.7.0", "vue-stepper": "^1.4.2", + "vue-tippy": "^4.7.2", "vue-toast-notification": "0.0.3", "vue-video-player": "^5.0.2", "vue-videobg": "^2.0.0", diff --git a/src/components/EpisodeIntro.vue b/src/components/EpisodeIntro.vue index cf5d13c..7f6fc3f 100644 --- a/src/components/EpisodeIntro.vue +++ b/src/components/EpisodeIntro.vue @@ -53,7 +53,7 @@
Focus - {{currentSlideData.payload.metaData.focus}} + {{createString(currentSlideData.payload.metaData.focusPoint)}}
@@ -137,7 +137,24 @@ export default { goToSignUp() { this.$router.push("/signup"); }, + + createString(list){ + var name = ""; + list.forEach(element => { + name = name+','+element; + }); + + console.log("name is",name); + return name.substring(1);; + } }, }; + \ No newline at end of file diff --git a/src/components/Profile.vue b/src/components/Profile.vue index 34bc7fd..6657df6 100644 --- a/src/components/Profile.vue +++ b/src/components/Profile.vue @@ -118,6 +118,7 @@ -->
- Save @@ -328,7 +329,7 @@ - Update Profile + Update Profile
@@ -355,21 +356,30 @@

{{ userData.firstName }} {{ userData.lastName }} - {{ userData.role }} + {{ userData.role }}