1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-18 07:52:23 +01:00

[bug] slots duration is not shown when looking at a new availability

This commit is contained in:
Sylvain 2020-09-23 10:20:51 +02:00
parent 36d8c76ad7
commit 8b823b3d67
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,7 @@
- Fix a bug: unable to run tests suite with run-tests.sh
- Fix a bug: unable to search for projects (#230)
- Fix a bug: wallet tab is not shown in members dashboard
- Fix a bug: slots duration is not shown when looking at a new availability
- Updated coveralls gem to a supported version
## v4.5.6 2020 September 1st

View File

@ -451,7 +451,8 @@ Application.Controllers.controller('AdminCalendarController', ['$scope', '$state
tag_ids: availability.tag_ids,
tags: availability.tags,
machine_ids: availability.machine_ids,
plan_ids: availability.plan_ids
plan_ids: availability.plan_ids,
slot_duration: availability.slot_duration
},
true
);