1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00

(bug) unable to change training reservation slot to another slot

This commit is contained in:
Du Peng 2024-07-19 17:24:48 +02:00
parent 9d502b5cf2
commit cb6d4702ed
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
## Next release
- Fix a bug: unable to change training reservation slot to another slot
## v6.3.29 2024 July 19
- updates chinese translations and adds translations

View File

@ -393,7 +393,7 @@ Application.Controllers.controller('ReserveTrainingController', ['$scope', '$tra
*/
const refreshCalendar = function () {
$scope.eventSources.splice(0, 1, {
url: `/api/availabilities/trainings/${$transition$.params().id}`,
url: `/api/availabilities/trainings/${$transition$.params().id}?member_id=${$scope.ctrl.member.id}`,
textColor: 'black'
});
}