From 8747900aa13a80e28efa0e42c81e35448c7d9b03 Mon Sep 17 00:00:00 2001 From: scmmishra Date: Wed, 27 Feb 2019 12:34:53 +0530 Subject: [PATCH] Fix: Content title fields --- .../public/js/education/lms/components/ContentTitle.vue | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/erpnext/public/js/education/lms/components/ContentTitle.vue b/erpnext/public/js/education/lms/components/ContentTitle.vue index 52b79629eb..a488ab85c3 100644 --- a/erpnext/public/js/education/lms/components/ContentTitle.vue +++ b/erpnext/public/js/education/lms/components/ContentTitle.vue @@ -5,7 +5,8 @@

{{ title }}

- Published on {{ publishDate }}, by {{ author }} + Published on {{ publishDate }} + — {{ author }}
@@ -21,11 +22,6 @@ export default { props: ['title', 'publishDate', 'author'], name: 'ContentTitle', - data() { - return { - - }; - }, };