1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-19 13:54:25 +01:00

CAD lists of types and extensions are now ordered alphabetically

This commit is contained in:
Sylvain 2021-05-24 17:33:32 +02:00
parent c3f7f04ec2
commit faa880f9f6
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
# Changelog Fab-manager
- CAD lists of types and extensions are now ordered alphabetically
- Fix a bug: reservation of slots restricted to subscribers leads to invoices without invoiced_id
- Fix a bug: new installation with mapping to an external network does not connect fab-manager to elasticsearch
- Fix a bug: typo in allow/prevent booking overlapping slots

View File

@ -21,7 +21,7 @@ Application.Directives.directive('selectMultipleSetting', ['Setting', 'growl', '
};
// the options
$scope.options = $scope.settings[$scope.name].split(' ');
$scope.options = $scope.settings[$scope.name].split(' ').sort();
// the selected options
$scope.selection = [];