Merge pull request #2336 from kravets-levko/fix/settings-tabs-order

Explicitly set order of tabs on Settings page
This commit is contained in:
Arik Fraimovich 2018-02-22 15:31:52 +02:00 committed by GitHub
commit c65b637bc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,7 @@ export default function init(ngModule) {
permission: 'admin',
title: 'Alert Destinations',
path: 'destinations',
order: 4,
});
ngModule.controller('DestinationsCtrl', DestinationsCtrl);

View File

@ -16,6 +16,7 @@ export default function init(ngModule) {
permission: 'create_query',
title: 'Query Snippets',
path: 'query_snippets',
order: 5,
});
ngModule.component('snippetsListPage', {

View File

@ -24,6 +24,7 @@ export default function init(ngModule) {
permission: 'admin',
title: 'Settings',
path: 'settings/organization',
order: 6,
});
ngModule.component('organizationSettingsPage', {

View File

@ -114,6 +114,7 @@ export default function init(ngModule) {
settingsMenu.add({
title: 'Account',
path: 'users/me',
order: 7,
});
ngModule.controller('UserCtrl', UserCtrl);