mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-02-21 15:54:22 +01:00
[bug] navigation to about page duplicates admin's links in left menu
This commit is contained in:
parent
fedfc866a9
commit
ab53b621d1
@ -5,6 +5,7 @@
|
|||||||
- Optimized notifications system
|
- Optimized notifications system
|
||||||
- Fix a bug: when many users with too many unread notifications are connected at the same time, the system kill the application due to memory overflow
|
- Fix a bug: when many users with too many unread notifications are connected at the same time, the system kill the application due to memory overflow
|
||||||
- Fix a bug: ReservationReminderWorker crash with undefined method find_by
|
- Fix a bug: ReservationReminderWorker crash with undefined method find_by
|
||||||
|
- Fix a bug: navigation to about page duplicates admin's links in left menu
|
||||||
|
|
||||||
## v2.4.9 2017 January 4
|
## v2.4.9 2017 January 4
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ Application.Controllers.controller "MainNavController", ["$scope", "$location",
|
|||||||
|
|
||||||
|
|
||||||
Fablab.adminNavLinks = Fablab.adminNavLinks || []
|
Fablab.adminNavLinks = Fablab.adminNavLinks || []
|
||||||
Fablab.adminNavLinks = [
|
adminNavLinks = [
|
||||||
{
|
{
|
||||||
state: 'app.admin.trainings'
|
state: 'app.admin.trainings'
|
||||||
linkText: 'trainings_monitoring'
|
linkText: 'trainings_monitoring'
|
||||||
@ -108,5 +108,5 @@ Application.Controllers.controller "MainNavController", ["$scope", "$location",
|
|||||||
}
|
}
|
||||||
].concat(Fablab.adminNavLinks)
|
].concat(Fablab.adminNavLinks)
|
||||||
|
|
||||||
$scope.adminNavLinks = Fablab.adminNavLinks
|
$scope.adminNavLinks = adminNavLinks
|
||||||
]
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user