Change the content of a minimized header
kamil-merdanov opened this issue · 1 comments
kamil-merdanov commented
Rencos1 commented
It is a very annoying problem, so I fixed it on my side. Until the issue is fixed properly, you can replace the method curateTitle() in windowControls.js by this one. It will strip the folder name from the minimized window.
static curateTitle(title) {
const curatedTitle = title.replace("[Token] ", "~ ").replace("Table Configuration: ", "");
const titleAndFolder = curatedTitle.split(':');
return titleAndFolder[titleAndFolder.length-1].trim();
}