[ML] Fix for groups input population when cloning job (#28449) (#28454)

This commit is contained in:
James Gowdy 2019-01-10 11:51:58 +00:00 committed by GitHub
parent 8c94fa579d
commit 8c60f1d28d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,6 +67,9 @@ module.directive('mlJobGroupSelect', function () {
.catch((error) => {
console.log('Could not load groups from calendars', error);
this.populateSelectedGroups(this.jobGroups);
})
.then(() => {
$scope.$applyAsync();
});
});