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

This commit is contained in:
James Gowdy 2019-01-10 11:52:08 +00:00 committed by GitHub
parent 9d761ee3e7
commit f32aeffa5f
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();
});
});