commit | a920bca044db6dfb342861e29c5e845081e10da2 | [log] [tgz] |
---|---|---|
author | scmmishra <scm.mymail@gmail.com> | Mon Nov 05 12:30:32 2018 +0530 |
committer | Aditya Hase <aditya@adityahase.com> | Tue Feb 19 13:06:31 2019 +0530 |
tree | 0709fdad31b6fd8c5d42f599cc4fd55d474c555d | |
parent | 0187b18c06900f772d8dfb223378a69e4e5bdcbd [diff] |
Minor UI fixes
diff --git a/erpnext/public/js/education/web-academy/components/ContentNavigation.vue b/erpnext/public/js/education/web-academy/components/ContentNavigation.vue index 61e3988..738dcd9 100644 --- a/erpnext/public/js/education/web-academy/components/ContentNavigation.vue +++ b/erpnext/public/js/education/web-academy/components/ContentNavigation.vue
@@ -1,8 +1,8 @@ <template> <div class="nav-buttons"> <button class='btn btn-outline-secondary' @click="$router.go(-1)">Back</button> - <button v-if="nextContent" class='btn btn-primary' @click="goNext()">Next</button> - <button v-else class='btn btn-primary' @click="finish()">Finish Course</button> + <button v-show="nextContent" class='btn btn-primary' @click="goNext()">Next</button> + <button v-show="!nextContent" class='btn btn-primary' @click="finish()">Finish Course</button> </div> </template>
diff --git a/erpnext/public/js/education/web-academy/pages/AcademyCoursePage.vue b/erpnext/public/js/education/web-academy/pages/AcademyCoursePage.vue index ca5434b..4149f4d 100644 --- a/erpnext/public/js/education/web-academy/pages/AcademyCoursePage.vue +++ b/erpnext/public/js/education/web-academy/pages/AcademyCoursePage.vue
@@ -16,7 +16,7 @@ name: "AcademyCoursePage", data() { return{ - nextContent: '', + nextContent: true, nextContentType: '', } },