mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-02-11 05:54:15 +01:00
[bug] unable to add a new authorized file type for project's CAD files
This commit is contained in:
parent
56cf638d54
commit
78b007a9ec
@ -1,9 +1,11 @@
|
|||||||
# Changelog Fab-manager
|
# Changelog Fab-manager
|
||||||
|
|
||||||
|
- Fix a bug: unable to add a new authorized file type for project's CAD files
|
||||||
|
|
||||||
## v4.7.6 2021 March 24
|
## v4.7.6 2021 March 24
|
||||||
- Ability to disable the trainings module
|
- Ability to disable the trainings module
|
||||||
- Ability to set the address as a mandatory field
|
- Ability to set the address as a mandatory field
|
||||||
- The address is new requested when creating an account
|
- The address is now requested when creating an account
|
||||||
- The profile completion page is less fuzzy for people landing on it without enabled SSO
|
- The profile completion page is less fuzzy for people landing on it without enabled SSO
|
||||||
- Prevent showing error message when testing for old versions during upgrade
|
- Prevent showing error message when testing for old versions during upgrade
|
||||||
- In the email notification, sent to admins on account creation, show the group of the user
|
- In the email notification, sent to admins on account creation, show the group of the user
|
||||||
|
@ -49,7 +49,8 @@ Application.Directives.directive('selectMultipleSetting', ['Setting', 'growl', '
|
|||||||
titleNew: function () { return $scope.titleNew; },
|
titleNew: function () { return $scope.titleNew; },
|
||||||
descriptionNew: function () { return $scope.descriptionNew; }
|
descriptionNew: function () { return $scope.descriptionNew; }
|
||||||
},
|
},
|
||||||
controller: function ($scope, $uibModalInstance, titleNew, descriptionNew) {
|
controller: ['$scope', '$uibModalInstance', 'titleNew', 'descriptionNew',
|
||||||
|
function ($scope, $uibModalInstance, titleNew, descriptionNew) {
|
||||||
$scope.value = undefined;
|
$scope.value = undefined;
|
||||||
$scope.titleNew = titleNew;
|
$scope.titleNew = titleNew;
|
||||||
$scope.descriptionNew = descriptionNew;
|
$scope.descriptionNew = descriptionNew;
|
||||||
@ -59,7 +60,7 @@ Application.Directives.directive('selectMultipleSetting', ['Setting', 'growl', '
|
|||||||
$scope.dismiss = function () {
|
$scope.dismiss = function () {
|
||||||
$uibModalInstance.dismiss('cancel');
|
$uibModalInstance.dismiss('cancel');
|
||||||
};
|
};
|
||||||
}
|
}]
|
||||||
}).result.finally(null).then(function (val) {
|
}).result.finally(null).then(function (val) {
|
||||||
const options = Array.from($scope.options);
|
const options = Array.from($scope.options);
|
||||||
if (typeof $scope.beforeAdd === 'function') { val = $scope.beforeAdd(val); }
|
if (typeof $scope.beforeAdd === 'function') { val = $scope.beforeAdd(val); }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user