We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ca961c commit c6039aeCopy full SHA for c6039ae
admin/javascript/LeftAndMain.Tree.js
@@ -239,7 +239,8 @@
239
240
// set title (either from TreeTitle or from Title fields)
241
// Treetitle has special HTML formatting to denote the status changes.
242
- if(title) node.find('.text').html(title);
+ // only update immediate text element, we don't want to update all the nested ones
243
+ if(title) node.find('.text:first').html(title);
244
245
// Collect flag classes and also apply to parent
246
var statusFlags = [];
0 commit comments