When you set the default view in admin settings, and you have multiple views checked to be available for user to switch, the default view doesn't get highlighted as "active".
To achieve this, in previous versions of Telescope (before RefactorScope) I modified the file client/components/menu/menu_component.js
adding this (I had TOP as my default view, so I shamefully hardcoded it):
if (currentPath === "/" && getRoute(this) === "/top") {
itemClass += " item-active"
}
I understand, that editing Telescope source files was not wise thing to do, but it was the quickest and simplest solution. Now, after the big Telescope refactor, I would like to do it the right way.
But the ultimate question is, what ist the right way to do this?