commit | 5b9df676a4ab3db35e705f2207c2364fb9878d9b | [log] [tgz] |
---|---|---|
author | scmmishra <scm.mymail@gmail.com> | Sat Apr 13 18:53:49 2019 +0530 |
committer | scmmishra <scm.mymail@gmail.com> | Sat Apr 13 18:53:49 2019 +0530 |
tree | ef134b1776725bf0e33d4777b422afd81d77c62a | |
parent | ff970a8062cf3cf4dd72ea93355450f0a9c27238 [diff] |
fix: minor bug in breadcrumb routing
diff --git a/erpnext/public/js/education/lms/components/Breadcrumb.vue b/erpnext/public/js/education/lms/components/Breadcrumb.vue index f816c3c..e7c0fc3 100644 --- a/erpnext/public/js/education/lms/components/Breadcrumb.vue +++ b/erpnext/public/js/education/lms/components/Breadcrumb.vue
@@ -1,7 +1,7 @@ <template> <div> <span v-for="(route, index) in routeData"> - <a href="route.route">{{ route.label }}</a><span> / </span> + <router-link :to="route.route">{{ route.label }}</router-link><span> / </span> </span> </div> </template>