diff --git a/erpnext/utilities/page/todo/todo.css b/erpnext/utilities/page/todo/todo.css
index 9fe595587a2..7cd7e4f02c2 100644
--- a/erpnext/utilities/page/todo/todo.css
+++ b/erpnext/utilities/page/todo/todo.css
@@ -23,10 +23,6 @@
float: right;
}
-.todoitem .ref_link {
- line-height: 18px;
-}
-
.todoitem .description {
cursor: pointer;
padding: 3px 0px;
diff --git a/erpnext/utilities/page/todo/todo.js b/erpnext/utilities/page/todo/todo.js
index 89c1ed8024b..39c8c2de015 100644
--- a/erpnext/utilities/page/todo/todo.js
+++ b/erpnext/utilities/page/todo/todo.js
@@ -79,10 +79,10 @@ erpnext.todo.ToDoItem = Class.extend({
parent_list += " div.todo-content";
if(todo.reference_name && todo.reference_type) {
- todo.link = repl('\
+ todo.link = repl('
\
%(reference_type)s: %(reference_name)s', todo);
} else if(todo.reference_type) {
- todo.link = repl('\
+ todo.link = repl('
\
%(reference_type)s', todo);
} else {
todo.link = '';
@@ -95,12 +95,10 @@ erpnext.todo.ToDoItem = Class.extend({