Index: lams_central/web/includes/javascript/learning-design-treeview.js
===================================================================
diff -u -r3640a625938374e930a8842bb760b481ce176401 -r9eb09148e5b2bc28bf60fa6c7300d544947f4379
--- lams_central/web/includes/javascript/learning-design-treeview.js (.../learning-design-treeview.js) (revision 3640a625938374e930a8842bb760b481ce176401)
+++ lams_central/web/includes/javascript/learning-design-treeview.js (.../learning-design-treeview.js) (revision 9eb09148e5b2bc28bf60fa6c7300d544947f4379)
@@ -86,7 +86,7 @@
$.each(response.learningDesigns, function(){
var canModify = canSave && this.canModify;
result.push({'label' : this.name,
- 'text' : this.name + (this.readOnly || !canModify ? ' ' : ''),
+ 'text' : this.name + (this.readOnly ? ' ' : ''),
'learningDesignId' : this.learningDesignId,
'canHaveReadOnly' : canHaveReadOnly,
'canModify' : canModify,