Fixed an issue where the debugger's custom tab title not applied when opened in the new browser tab. Fixes #5974

This commit is contained in:
Nikhil Mohite
2020-11-12 17:59:13 +05:30
committed by Akshay Joshi
parent 5370bb4515
commit ebf5e871e0
6 changed files with 28 additions and 4 deletions
@@ -68,7 +68,7 @@ function setDebuggerTitle(panel, preferences, function_name, schema_name, databa
'type': 'debugger',
};
var title = generateTitle(debugger_title_placeholder, title_data);
panel.title('<span>'+ _.escape(title) +'</span>');
panel.title('<span>'+ title +'</span>');
}
function get_function_name(function_name) {