mirror of https://github.com/akveo/blur-admin
fix(sidebar): fix static menu items after merge
parent
8e8d542e07
commit
b656e4d81e
|
@ -6,10 +6,16 @@
|
||||||
|
|
||||||
/** @ngInject */
|
/** @ngInject */
|
||||||
function sidebarService($state) {
|
function sidebarService($state) {
|
||||||
var staticMenuItems = [{
|
var staticMenuItems = [ {
|
||||||
title: 'Login Page',
|
title: 'Auth Pages',
|
||||||
icon: 'ion-log-out',
|
icon: 'ion-log-out',
|
||||||
|
subMenu: [{
|
||||||
|
title: 'Sign In',
|
||||||
root: 'auth.html'
|
root: 'auth.html'
|
||||||
|
}, {
|
||||||
|
title: 'Sign Up',
|
||||||
|
root: 'reg.html'
|
||||||
|
}]
|
||||||
}, {
|
}, {
|
||||||
title: '404 Page',
|
title: '404 Page',
|
||||||
icon: 'ion-document',
|
icon: 'ion-document',
|
||||||
|
|
Loading…
Reference in New Issue