Commit 98a0010d37ee8a5476c25b3e051a08e7bbeb95f6

Authored by Shikha Mishra
1 parent 57a3ca1d66

issue solved related to pdf file in course details

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
src/pages/Course/courseDetail.vue
... ... @@ -394,7 +394,7 @@
394 394 </v-flex>
395 395 </v-layout>
396 396 <!-- LINK TO PDF -->
397   - <v-layout row justify-center>
  397 + <v-layout row justify-center v-show="editedItem.pdfFileUrl != ''">
398 398 <v-flex xs6>
399 399 <div style="width: 100%;">
400 400 <a
... ... @@ -967,7 +967,7 @@ export default {
967 967 });
968 968 },
969 969 profile(item) {
970   - console.log("chaper - ", item);
  970 + // console.log("chaper - ", item);
971 971 this.editedIndex = this.chapters.indexOf(item);
972 972 this.editedItem = Object.assign({}, item);
973 973 this.viewProfileGallery = true;
... ...