Option to set default navigation mode in the Graphite UI

Asked by Dennis Brandenburg

Hi,

Newer Graphite versions have the completer (top nav) instead of the tree view (left nav) set by default. How can I switch that back to use the tree view by default? Couldn't find anything related in the documentation or in example configurations.

Many thanks and regards,
Dennis

Question information

Language:
English Edit question
Status:
Solved
For:
Graphite Edit question
Assignee:
No assignee Edit question
Solved by:
Dennis Brandenburg
Solved:
Last query:
Last reply:
Revision history for this message
Dennis Brandenburg (d-brandenburg) said :
#1

Hacky solution:

edit ${your_graphite_install_path/}webapp/content/js/dashboard.js:

change:

var NAV_BAR_REGION = cookieProvider.get('navbar-region') || 'north';

to:

var NAV_BAR_REGION = cookieProvider.get('navbar-region') || 'west';

Would actually be nice to be able to configure this.