Feature/wms 42 (#60)

* Added: transfer list component
* Updated: package.json
* Linted
* Udpated: removed width constrain
* create user role UI changes

Co-authored-by: Llewellyn Dsouza <lledsouza2209@gmail.com>
This commit is contained in:
bhavana-jain
2022-02-21 12:33:46 +05:30
committed by GitHub
parent e6186d7835
commit 68dca0dc34
6 changed files with 319 additions and 68 deletions

View File

@@ -58,6 +58,7 @@ import SetupInventory from 'pages/setupInventory';
import HomeIcon from 'assets/images/HomeIcon';
import SetupIcon from 'assets/images/SetupIcon';
import AddNewProduct from '../pages/addNewProduct';
import CreateUserRole from 'pages/createUserRole';
import WidgetLabel from 'pages/widgetLabel';
// Images
@@ -202,6 +203,13 @@ const protectedRoutes = [
route: '/setup/labeling/widget-label',
hide: true,
component: <WidgetLabel />
},
{
name: 'Create Role',
key: 'create-role',
route: '/setup/users-access/create-role',
hide: true,
component: <CreateUserRole />
}
]
}