javascript - How do i change the name of menu 'Admin' in Mean.js -


i using mean.js app, , when log in admin see menu 'admin' showing up, change it's name users.

in user/client/config/users-admin.client.menus.js have:

'use strict';  // configuring articles module angular.module('users.admin').run(['menus',     function (menus) {         menus.addsubmenuitem('topbar', 'admin', {             title: 'manage users',             state: 'admin.users'         });      } ]); 

this sub-menu, dont see option change 'admin'.

how achieve such thing, possible?

i have attached screenshot of mean.

screenshot


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -